Skip to content
eT Community

eT Community

  • Forums
  • Members
  • Recent Posts
  • Website
Forums
Search
 
Notifications
Clear all

Search result for:  WA 0812 2782 5310 Katalog Harga Rolling Door One Set Murah Lendah Kulon Progo

 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:


Page 1 / 7 Next
# Post Title Result Info Date User Forum
Answer to: Good Arduino IoT projects for a beginner?   15 Relevance 10 months ago Jignesh Arduino
  ... thresholds + cloud alerts. 2. Smart Plant Mood Monitor Combine a soil moisture sensor, light sensor, and temp sensor. Based on readings, display your plant’s "mood" using emojis on an OLED or in a mobile app. Could also send WAtering reminders if the soil is dry. 3. Wi-Fi Jammer Detector With just an ESP8266, you can scan Wi-Fi channels and detect when there's suspicious interference or sudden drops in signal — send an alert if something looks off. Simple but cool networking concept. 4. IoT Trash Bin Level Monitor Use an ultrasonic sensor to measure h ...
Answer to: What does it mean to “set the trigger” on an oscilloscope?   15 Relevance 10 months ago Deboojit Equipments
  When you simply connect an oscilloscope to a signal, the screen may show a WAveform that appears unstable, jittery, or Rolling. This happens because the scope doesn’t know when to start drawing each WAveform—it just keeps refreshing as data comes in. That’s where the trigger comes in. The trigger tells the oscilloscope when to begin drawing the WAveform on the screen. It locks the display to a specific event—like when the signal crosses a certain voltage level going up (rising edge) or down (falling edge). By doing this, it ensures that each sweep starts a ...
Answer to: Can i use EN pins for PWM speed control in L298N Motor driver?   10 Relevance 2 years ago Admin Hardware/Schematic
  Yes, you can hook these pins to the PWM pin on Arduino. The Enable pin on the L298N acts as a gatekeeper for the power supplied to the motor. When the pin is Set HIGH, the motor is enabled and can run. When Set LOW, the motor is disabled and stops. By connecting the Enable pin to a PWM-capable pin on the Arduino and sending a PWM signal, you can control the effective voltage supplied to the motor. This changes the speed of the motor: A higher duty cycle (e.g., 100%) means the Enable pin is HIGH most of the time, allowing full power to the motor and thus full speed.A lower duty cycle (e.g., 50%) means the Enable pin is HIGH only half the time, reducing the average power supplied to the motor and thus reducing the speed. Here's an example that demonstrates how to Set up and control the motor speed connected to A channel: // Define pins const int ENA = 9; // PWM pin for Motor A const int IN1 = 8; // Direction pin 1 for Motor A const int IN2 = 7; // Direction pin 2 for Motor A void Setup() { // Set pin modes pinMode(ENA, OUTPUT); pinMode(IN1, OUTPUT); pinMode(IN2, OUTPUT); } void loop() { // Set motor direction digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW); // Set motor speed using PWM analogWrite(ENA, 127); // 50% duty cycle, half speed delay(2000); // Run for 2 seconds // Change motor speed analogWrite(ENA, 255); // 100% duty cycle, full speed delay(2000); // Run for 2 seconds
What does it mean to “set the trigger” on an oscilloscope?   8 Relevance 10 months ago Nitin arora Equipments
  I'm troubleshooting a communication circuit and often hear people say to “set the trigger” on the oscilloscope. I’m confused—what’s the difference between just connecting the scope and actually Setting the trigger? What does the trigger do, and how does it help in viewing signals properly?
Electret Microphone vs Condenser Microphone?   5 Relevance 1 year ago Philippe Theoretical questions
  hey everyone, I’m working on a security project where the system activates (e.g., triggers an alarm or lights up an LED) when it detects a loud sound, such as a clap or a Door slam. While researching, I came across both electret and condenser microphones, but I’m unsure which One would be better for this application. Can anyone help me decide which microphone to use?
Answer to: Arduino UNO R4 Wi-Fi Project ideas!   4 Relevance 2 years ago Amelia Arduino
  There are a lot of ideas you can implement with the Arduino UNO R4 Wifi, depending on what you WAnt to achieve. However, I have done a few projects that you can also try, ranging from beginner to advanced levels: Home Automation System Smart Door Lock IoT-Based Weather Station Wi-Fi-Controlled Robot Smart Irrigation System Wi-Fi-Enabled Data Logger Real-Time Air Quality Monitoring System Wi-Fi-Based Notification System
ESP32-C3 vs ESP32-S3 — which one to go with?   3 Relevance 8 months ago zaid ESP32
  I need a board with native USB support for HID or custom USB projects, and I’m trying to decide between the ESP32-C3 and ESP32-S3. Do both support native USB, and which One is more reliable for this purpose?
Moore vs Mealy State Machines – Which One Should I Use?   3 Relevance 10 months ago DIY Electronica Theoretical questions
  I’ve been learning about finite state machines and came across Moore and Mealy models. I understand that they both use states and transitions, but I’m a bit confused about how their outputs are handled and when to choose One over the other. Can someone explain the key differences in a practical context, and maybe give some guidance on when it’s better to use Moore vs Mealy in a digital design?
ESP32 Vs ESP8266 - Which one to choose?   3 Relevance 1 year ago Nitin arora ESP32
  I am a college student working on a project that requires a Wi-Fi-enabled microcontroller, but I am unsure whether to choose the ESP8266 or ESP32. I WAnt to understand how they compare in terms of processing power, memory, and additional functionalities. Also, since the budget is a factor, would the ESP8266 still be a good option, or is it worth spending more on the ESP32? Which One would be more suitable for a college project?
Answer to: What are interrupts in Arduino, and how are they used?   8 Relevance 10 months ago Admin Arduino
  ... to bake a cake. Your loop() function is carefully measuring flour, mixing ingredients, and so on. Now, what if the Doorbell rings? Without interrupts (the loop() WAy): You'd have to finish a major step in your recipe (like mixing the batter) and then quickly run to the Door to check if anyone is there. If your recipe step takes a long time, your visitor might get impatient and leave. This is called polling – repeatedly checking the state of something. With interrupts: The moment the Doorbell rings, you'd immediately pause what you're doing (even if you're ...
Answer to: Electret Microphone vs Condenser Microphone?   8 Relevance 1 year ago Mehjabeen Theoretical questions
  For a sound-activated security project where you need to detect loud and sudden sounds (e.g., claps or Door slams), an Electret Microphone is generally a better choice. Here’s why(see the image attached below.) Recommendation: Use an Electret Microphone for your project. It is cost-effective, easy to interface with microcontrollers, and sensitive enough to detect sudden, loud sounds like claps or Door slams. You can amplify its output using an op-amp circuit or a microphone module for better performance. Attachment :  Electret-vs-condenser-microphone.png
RE: Li-ion vs. Li-Po Batteries: Which One Should I Choose?   3 Relevance 1 year ago Admin Theoretical questions
  For a portable IoT device, Li-ion is generally the better choice because of its higher energy density and longer lifespan. It’ll give you more runtime per charge and is easier to manage in terms of charging circuits and protection. That said, Li-Po can work for IoT devices, but it’s usually overkill unless you have specific design constraints—like needing a really thin form factor or a custom shape that standard Li-ion cells don’t fit. One area where Li-Po might make sense is if your device has occasional power spikes, since Li-Po batteries can handle higher discharge rates.
Li-ion vs. Li-Po Batteries: Which One Should I Choose?   3 Relevance 1 year ago abhinav singh Theoretical questions
  I need a rechargeable battery for an electronics project but I'm unsure whether to go with Li-ion or Li-Po. I've heard they have differences in durability, power delivery, and safety, but I’m not sure which One would be the better choice. Could someone clarify their advantages and ideal use cases?
Answer to: Why should one buy original Arduino boards and not clones?   3 Relevance 2 years ago LogicLab Arduino
  I never faced any issues with Arduino UNO or Nano clones. It's all about your choice- Do you WAnt an original board(the tag of being called original) or are you happy with a clone One which is exactly the same!
How to interface a 16x2 LCD with Arduino without a potentiometer?   3 Relevance 12 months ago CircuitFlow Arduino
  I'm trying to connect a 16x2 LCD to an Arduino Uno, but I currently don't have a 10k potentiometer (the One usually connected to the VO pin) to adjust the contrast. Is there a reliable WAy to control the contrast without using a potentiometer? For example, can I use a fixed resistor, or is there a WAy to Set contrast through software or a PWM pin? I'd really appreciate your suggestions if anyone has tried this or has a workaround that works well. Thanks!
Page 1 / 7 Next

Forum Search

Recent Posts

  • Admin

    RE: esp32 diagram connection

    @wmughal What do you want to achieve here exactly?

    By Admin , 1 month ago

  • DIY an RF power meter Based on STM32F103 + MAX4003

    As we all know, Radio frequency (RF) is a very importan...

    By anselbevier , 1 month ago

  • esp32 diagram connection

    i never use esp32 before i get diagram from claude i wa...

    By wmughal , 1 month ago

  • Admin

    RE: Motor driver not working properly

    @noochee Can you please share more details? Circuit dia...

    By Admin , 2 months ago

  • Motor driver not working properly

    I built an obstacle avoiding robotic car using Arduino,...

    By Noochee , 2 months ago

  • Answer to: Bluetooth Speaker won't turn on

    Translator Sorry, this i...

    By servitec , 3 months ago

  • Bluetooth Speaker won't turn on

    I know is not probably the best place for a newbie, the...

    By servitec , 3 months ago

  • Answer to: Why Fluke multimeters are so expensive?

    Totally agree with the points above. In my experience, ...

    By maryjlee , 6 months ago

  • Answer to: Can Raspberry Pi Replace a Home Router or Firewall?

    Yes, it’s definitely possible to turn a Raspberry Pi (e...

    By Divyam , 6 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 261 Topics
  • 700 Posts
  • 3 Online
  • 256 Members
Our newest member: Jibun no Kage
Latest Post: esp32 diagram connection
Forum Icons: Forum contains no unread posts Forum contains unread posts
Topic Icons: Not Replied Replied Active Hot Sticky Unapproved Solved Private Closed

Powered by wpForo  Powered by wpForo version 2.4.17

© 2026 eT Community • Built with GeneratePress