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 [[Tigapillar]] Harga Jasa Hidroseeding Green Project Mamuju Sulawesi Barat

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

 Sort Search Results by:


Page 6 / 7 Prev Next
Answer to: What is the difference between ARM and AVR microcontrollers?
Arduino
Amelia
1 year ago
1 Relevance
ARM and AVR microcontrollers differ significantly in architecture, performance, and typical applications. AVR microcontrollers are 8-bit devices based on a simple RISC architecture, making them easy to program and ideal for straightforward tasks. They usually operate at lower clock speeds and are commonly found in beginner Projects, basic robotics, and simple IoT devices. On the other hand, ARM microcontrollers are 32-bit (and sometimes 64-bit) devices with much more complex architectures. They offer higher processing power, faster clock speeds, more memory, and better power efficiency. ARM-based chips are often used in advanced IoT applications, real-time systems, wearable devices, and anything that demands higher performance or multitasking capabilities. AVR is generally better suited for simpler, smaller-scale Projects where ease of use is a priority, while ARM is a better fit for complex or resource-intensive applications. The choice between them depends largely on the Project requirements.
View entire post
Answer to: ESP32 Vs ESP8266?
ESP32
Admin
1 year ago
1 Relevance
Ok, I will make the choice of choosing between an ESP32 and ESP8266 as simple as possible for you: Price: If you check the online stores, the price of ESP32 is almost double that of the ESP8266. So if you have a tight budget, ESP8266 is the more WAllet-friendly option. Processing Power: The ESP32 has dual cores and more memory, making it faster and better at handling multiple tasks. The ESP8266 has a single core, which might slow things down if your Project is big. Extra Features: The ESP32 comes with Bluetooth (and sometimes more I/O pins), while the ESP8 ...
View entire post
Program to toggle LED state with a single button?
Programming
tricky_logic
1 year ago
1 Relevance
... tried using digitalRead() in a simple if condition, but I suspect I need to debounce the button properly. Should I use delay(), or is there a better approach using millis()? Here’s my basic code: const int buttonPin = 2; const int ledPin = 13; bool ledState = false; void setup() { pinMode(buttonPin, INPUT); pinMode(ledPin, OUTPUT); } void loop() { if (digitalRead(buttonPin) == HIGH) { ledState = !ledState; digitalWrite(ledPin, ledState); delay(200); // Debounce delay? } } Is there a more reliable ...
View entire post
ESP32 or STM32: Which is better for IoT?
ESP32
TechPulse
2 years ago
1 Relevance
I'm planning an IoT Project but feeling confused about which microcontroller to choose. The ESP32 seems great for Wi-Fi and Bluetooth connectivity, but I've heard STM32 excels in performance and flexibility. I'm unsure how they compare in terms of power consumption, library support, and ease of development. Could someone clarify these points to help me decide?
View entire post
How to identify LED terminals?
Theoretical questions
Aiden
2 years ago
1 Relevance
Hi everyone, I'm working on a school Project that involves LEDs. I came across an LED where both the anode and cathode leads are of equal length, making it difficult to distinguish between them using the typical lead length method. Additionally, the internal structure of the LED is not visible. What are some reliable methods or techniques I can use to accurately identify the anode and cathode terminals in this situation?
View entire post
Is It Safe to Control Multiple LEDs(15) Directly from Arduino Pins?
Hardware/Schematic
Tristan
2 years ago
1 Relevance
Hello everyone, I'm working on a school Project where I need to control 15 LEDs using an Arduino, and I'm considering directly connecting them to the digital/analog pins with resistors. However, I'm concerned about potential overcurrent issues. Can anyone advise if it's safe to connect all 15 LEDs directly to the Arduino pins, or should I consider alternative methods to avoid damaging the Arduino?
View entire post
Why Use a DC Motor Controller Instead of a Potentiometer?
Circuits and Projects
hobart bess
2 years ago
1 Relevance
Hi everyone, I'm currently working on a Project that involves controlling the speed of a DC motor. I understand that a potentiometer can be used to control the speed of a motor by varying the resistance, which in turn adjusts the voltage supplied to the motor. Given this, I'm curious about the need for dedicated DC motor controllers. Why should I consider using a separate motor controller when a simple potentiometer seems to achieve the same result? I'd appreciate it if someone could explain the advantages or scenarios where a DC motor controller is preferred over a potentiometer for speed control. thank you
View entire post
Answer to: Suggestions for Good ATtiny85 Projects
Circuits and Projects
Admin
2 years ago
1 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: What is the difference between Arduino Nano Every and Nano RP2040?
Arduino
Admin
2 years ago
1 Relevance
Well, these two are very different boards if you look at the specs. I do not understand why you are confused between these two boards. Arduino Nano Every: This board does not include built-in Wi-Fi or Bluetooth capabilities. It's suitable for Projects that don't require wireless communication or where such features can be added externally if needed. Priced at approximately €15.30 (around ₹1,350), it's a cost-effective choice for basic Projects. Arduino R02040 Connect: Equipped with the u-blox NINA-W102 module, it offers both Wi-Fi and Bluetooth connectivity. This makes it ideal for Internet of Things (IoT) Projects or applications requiring wireless communication. Available for about €30.70 (around ₹2,700), reflecting its enhanced features and connectivity options. Which One Should You Choose? Nano Every: If you’re on a budget, don’t need wireless connectivity, or are working on simple Projects, this is an excellent choice. Nano RP2040 Connect: If your Project needs built-in Wi-Fi or Bluetooth, or if you’re exploring more advanced or resource-intensive applications, this is the better option.
View entire post
How to choose coupling capacitor sizes for an audio amplifier?
Theoretical questions
techy ishan
2 years ago
1 Relevance
Hi everyone, For my new Project, I am building an amplifier circuit to achieve clear sound. However, I am unsure about the appropriate capacitance values to use for the coupling capacitors. Any advice or guidance would be greatly appreciated.
View entire post
Can i use EN pins for PWM speed control in L298N Motor driver?
Hardware/Schematic
TechSpark
2 years ago
1 Relevance
hey everyone, To properly control the speed of my DC motor in my current Project, I need to know if the ENA and ENB pins on the L298N motor driver can accept PWM signals to vary the motor speed, or if these pins are only used for switching the channels ON and OFF. Any guidance on using these pins for speed control would be greatly appreciated.
View entire post
RE: Is Arduino still relevant in 2024?
Arduino
Harper
2 years ago
1 Relevance
I totally agree with Jeff. Building a custom PCB including a microcontroller chip for a personal Project such as automating your room is one thing and you may even save a few bucks than buying the dev board separately. But when you WAnt to sell this product to consumers that's a whole different story. You can't possibly think that assembling some parts on 10 PCBs and saving money is anything like doing business. It takes a lot to create a profitable business out of this.
View entire post
Answer to: Is Arduino still relevant in 2024?
Arduino
nathan
2 years ago
1 Relevance
Oh, I totally get where you're coming from, and you're making some valid points there. But like ESP32 boards which have WiFi and Bluetooth, some Arduino boards also offer these features. Now most of the Arduino boards don't have WiFi or BL but don't forget they are beginner-friendly, compatible with breadboards, versatile, and supported by a large community. While ESP32 may be better for some Projects, starting with Arduino provides a solid foundation. Both have their strengths; the choice depends on your Project's needs and your experience level.
View entire post
Maximum current limitation of a digital pin on UNO
Hardware/Schematic
Harper
2 years ago
1 Relevance
Hey folks, I'm new to Arduino and tinkering with digital pins for a Project. I'm trying to control a DC motor that I've hooked up to one of the digital pins. I've heard it's important to stay within the current limits of the pins, around 40mA per pin. Can someone confirm this for me? And also, what happens if I exceed this limit while powering the motor? Will it damage my board?
View entire post
Answer to: Suggest some good Arduino books?
Arduino
Amelia
2 years ago
1 Relevance
Great to hear you’re diving into robotics! Here are a few books that I’ve personally found helpful: Arduino Robotics by John-David WArren This book is packed with robotics Projects and explains how to integrate motors, sensors, and actuators into robotic systems. It’s beginner-friendly but dives deep into practical applications. Programming Arduino: Getting Started with Sketches by Simon Monk While this book isn’t robotics-specific, it’s an excellent introduction to Arduino programming. You can combine this with a robotics-focused guide for a complete ...
View entire post
Page 6 / 7 Prev Next

Forum Search

Recent Posts

  • RE: Beginner Arduino Course —Any Recommendations?

    @rahav When I started learning Arduino, I realized that...

    By playwithcircuit , 2 weeks ago

  • 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

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 278 Topics
  • 744 Posts
  • 5 Online
  • 287 Members
Our newest member: playwithcircuit
Latest Post: Beginner Arduino Course —Any Recommendations?
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.4

© 2026 eT Community • Built with GeneratePress