Skip to content
eT Community

eT Community

  • Forums
  • What’s New
  • Members
  • Recent Posts
  • Website
Forums
Search
 
Notifications
Clear all

Search result for:  WA 0821 1305 0400 [[Adefa]] Vendor Jual Erosion Control Mat Kepahiang Bengkulu

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

 Sort Search Results by:


Page 2 / 7 Prev Next
Answer to: How to interface stepper motor with Raspberry Pi Pico?
RPi Pico
Dinesh bhard...
1 year ago
4 Relevance
... unlike most Arduinos, which use 5V; therefore, it's essential to ensure your stepper driver is compatible. Fortunately, common drivers like the A4988, DRV8825, and even the ULN2003 (for 28BYJ-48 motors) work just fine with the Pico without level shifting in most cases. For wiring, I connected the STEP and DIR pins of the A4988 to GPIO14 and GPIO15 on the Pico, powered the motor using an external 12V supply, and tied the A4988’s ENABLE pin to ground for always-on operation. Since the Pico supports MicroPython, I used it to write a simple script that toggle ...
View entire post
Answer to: Creative Ways to Use a Relay Module?
Theoretical questions
Nitin arora
1 year ago
4 Relevance
Relay modules are incredibly versatile and can be used in many creative and practical applications. Below are some ideas beyond just turning lights on and off: 1. Home Automation:Use a relay module to automate household appliances like fans, coffee makers, or even a WAter heater. These can be triggered using a microcontroller, voice commands (via Alexa or Google Assistant), or a mobile app. 2. Smart Irrigation System:Control WAter pumps or solenoid valves in a garden or farm setup. A soil moisture sensor can activate the relay to start WAtering only when n ...
View entire post
Answer to: Suggestions for Good ATtiny85 Projects
Circuits and Projects
Admin
2 years ago
4 Relevance
Here are 15 amazing project ideas you can create using the ATtiny85 microcontroller: LED Matrix AnimationProgram an LED Matrix to display scrolling text or animations using the ATtiny85. Miniature Digital ThermometerBuild a small thermometer using a temperature sensor like LM35 or DS18B20 and display the data on a tiny OLED screen. IR Remote Control SystemDecode signals from an IR remote to Control LEDs, fans, or other appliances. Sound Reactive LightsCreate an audio visualizer where LEDs blink in response to sound or music using a microphone module. Capacitive Touch SwitchMake a touch-sensitive button using a conductive surface and the ATtiny85, perfect for smart home switches. Portable Motion DetectorUse a PIR sensor to build a portable motion detection alarm system for security purposes. USB Volume ControllerTurn your ATtiny85 into a USB HID device to Control your computer’s volume with a rotary encoder. Tiny Weather StationMeasure temperature and humidity with sensors like DHT11/DHT22 and display the readings on an OLED. Ultrasonic Distance MeterUse an ultrasonic sensor to measure distances and display them on a small display. Blinking Bicycle LightCreate a small, energy-efficient blinking tail light for a bicycle, powered by a coin cell battery. Minimalist USB Game ControllerBuild a simple game Controller for retro-style games with buttons connected to the ATtiny85. PWM Fan Speed ControllerControl the speed of a DC fan using pulse-width modulation and a temperature sensor for feedback. ATtiny85 Robot BrainPower a small robot with an ATtiny85, Controlling motors and sensors for basic navigation. Night Light with Light SensorCreate an automatic night light that turns on in low-light conditions using an LDR and LEDs. Tiny Digital StopwatchDesign a simple stopwatch with start, stop, and reset functions using push buttons and an OLED display. These projects highlight the versatility of the ATtiny85 and can help you learn more about electronics, programming, and sensors. This site is hands down the best for projects related to ATtiny85. So, definitely check it out.
View entire post
Answer to: Difference between active and passive buzzer and how to identify them?
Theoretical questions
Admin
2 years ago
4 Relevance
For a tank WAter level Control system, both active and passive buzzers can be used for sound alerts, but which one is best depends on your needs. Key Differences:Active Buzzer: This type comes with an internal oscillating circuit, meaning it generates sound as soon as you power it. You don't need any extra Control or signal from a microcontroller—just apply voltage (like 5V), and it will produce a constant tone. This is ideal for simple "on/off" alerts. Pros: Easy to use, no extra coding needed to generate sound. Cons: Fixed tone—no Control over pitch or ...
View entire post
Answer to: Is It Safe to Control 15 LEDs Directly from Arduino Pins?
Hardware/Schematic
TechTalks
2 years ago
4 Relevance
Hello Tristan, You see directly connecting 15 LEDs to Arduino pins can lead to overcurrent issues, potentially damaging the Arduino. This is because each LED draws a certain amount of current, and the combined current draw can easily exceed the maximum current rating of the Arduino's pins. Additionally, the resistors used to limit current will also dissipate power, which can overheat the Arduino or the resistors themselves. To avoid these problems, it's recommended to use LED driver such as ULN2003. These drivers and Controllers can handle higher currents without overloading the Arduino pins. By employing these methods, you can safely Control 15 LEDs with your Arduino without risking damage. hope this will help
View entire post
Answer to: How to interface stepper motor with Raspberry Pi Pico?
RPi Pico
Aiden
12 months ago
3 Relevance
I've used both Arduino and Raspberry Pi Pico for stepper motor Control, and while the Pico works a bit differently, it's definitely up to the task. For drivers, the A4988 or DRV8825 work great with the Pico—just connect the STEP and DIR pins to any GPIOs. If you’re using a 28BYJ-48 stepper, the ULN2003 driver is also a good Match. The main difference is in the coding environment. With Arduino, you get easy-to-use libraries like AccelStepper. On the Pico, you can use MicroPython or C/C++. MicroPython is easier to get started with, and you can Control the motor by toggling GPIO pins with delays. But for smooth, high-speed stepping, the PIO (Programmable I/O) on the Pico really shines—it lets you generate very precise timing signals without using up the CPU. The Pico has more raw power and flexibility, especially with its dual cores and PIO blocks, but you’ll probably spend more time setting things up compared to Arduino. Once you get past the learning curve, it’s a really powerful platform for stepper Control. Let me know what motor and driver you're using—happy to help with wiring or code examples!
View entire post
RE: Is It Safe to Control Multiple LEDs(15) Directly from Arduino Pins?
Hardware/Schematic
Tristan
2 years ago
3 Relevance
@ankunegi Ohhh. Now I get it. Thanks!
View entire post
Page 2 / 7 Prev Next

Forum Search

Recent Posts

  • Admin

    RE: esp32 diagram connection

    @wmughal What do you want to achieve here exactly?

    By Admin , 4 months ago

  • DIY an RF power meter Based on STM32F103 + MAX4003

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

    By anselbevier , 4 months ago

  • esp32 diagram connection

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

    By wmughal , 4 months ago

  • Admin

    RE: Motor driver not working properly

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

    By Admin , 5 months ago

  • Motor driver not working properly

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

    By Noochee , 5 months ago

  • Answer to: Bluetooth Speaker won't turn on

    Translator Sorry, this i...

    By servitec , 6 months ago

  • Bluetooth Speaker won't turn on

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

    By servitec , 6 months ago

  • Answer to: Why Fluke multimeters are so expensive?

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

    By maryjlee , 9 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 , 9 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 278 Topics
  • 744 Posts
  • 3 Online
  • 287 Members
Our newest member: playwithcircuit
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 version 3.1.2

© 2026 eT Community • Built with GeneratePress