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 4 / 7 Prev Next
How can I build a basic RC car using Arduino?
Arduino
PCBChronicle...
1 year ago
1 Relevance
I WAnt to create a simple RC car using Arduino and need some guidance on the necessary components and setup. The plan is to control the car wirelessly but am unsure whether Bluetooth, RF, or Wi-Fi would be the best option. Additionally, I would like to know which Arduino board would be most suitable for this Project and what type of motor driver should be used to control the DC motors. If there are any recommended libraries, circuit diagrams, or example codes to help get started, I would appreciate any suggestions.
View entire post
How to Integrate Amazon Alexa with Arduino Cloud?
Arduino
CircuitSpher...
1 year ago
1 Relevance
Hi everyone, For our school Project, we’re building a robotic car that can be controlled using voice commands. We WAnt to integrate Alexa with Arduino IoT Cloud to make this possible but don't know how to set it up. What’s the best WAy to connect Alexa to Arduino IoT Cloud, and what challenges should we be aware of?
View entire post
Answer to: What's the best way to learn Arduino programming for beginners?
Arduino
TechTalks
12 months ago
1 Relevance
You're not alone—many people from non-CS backgrounds get into robotics and face this exact challenge. The good news is that learning programming for Arduino doesn’t require a formal computer science degree. Here are some of the best and most effective WAys I found helpful in learning programming in this context: Learn from your own code – Go through your Project code line by line. Make small changes and observe the results. It really helps build a deeper understanding. Focus on the basics – Functions like pinMode(), digitalWrite(), analogRead(), if, for, a ...
View entire post
Connecting Unequal Li-ion Batteries in Parallel
Theoretical questions
Janet
1 year ago
1 Relevance
I'm working on a battery-powered Project and came across something that seems simple but feels more complicated the more I think about it. Suppose I have two identical 3.7V Li-ion cells, both with the same capacity and chemistry, but one is sitting at 4.1V and the other at 3.9V. If I connect them directly in parallel (positive to positive, negative to negative), what exactly happens? I know current will flow from the higher voltage cell to the lower one, but: How much current are we talking about? Is there a risk of damaging the cells or causing overheating? Why doesn’t the higher-voltage cell just “wait” until they equalize gradually? Would internal resistance limit the surge, or is it still unsafe? I’m also curious how BMS (Battery Management Systems) handle this situation, and whether any passive or active balancing is required before connecting cells in parallel. If anyone has experience or insight (especially real-world examples or best practices), I’d really appreciate it!
View entire post
Answer to: Li-ion vs. Li-Po Batteries: Which One Should I Choose?
Theoretical questions
Rashid
1 year ago
1 Relevance
If you need a battery with better durability, longer lifespan, and stable power delivery, go with Li-ion—ideal for general electronics and low to moderate power applications. If your Project requires high discharge rates, lightweight design, or a flexible form factor, Li-Po is the better choice—commonly used in drones, RC vehicles, and high-performance applications. Li-ion is more stable and lasts longer, while Li-Po is more powerful but requires careful handling.
View entire post
Answer to: ESP32 or STM32: Which is better for IoT?
ESP32
NextGenTech
1 year ago
1 Relevance
Each has its strengths—no need to choose sides. Use the ESP32 when you need wireless, the STM32 when you need control. They're affordable enough to keep both on hand for whatever the Project demands.
View entire post
Do I really need anti-static precautions when handling ICs?
Theoretical questions
Techyguy
1 year ago
1 Relevance
I'm working on a small Project with some ICs (mostly logic chips and a microcontroller), and I keep seeing WArnings about static electricity damaging components. But honestly, I’ve handled a lot of parts with bare hands and never had one fail—at least not immediately. That got me wondering: Can static electricity actually kill an IC just from touching it? Are certain types of chips (like CMOS or microcontrollers) more sensitive? If the IC is already soldered onto a board, is it still at risk? I don’t have a proper anti-static mat or wrist strap ...
View entire post
Shift Register Cascading Issues
Theoretical questions
Electronix
1 year ago
1 Relevance
I'm trying to cascade multiple 74HC595 shift registers to expand the number of digital outputs in my Project. While one shift register works perfectly on its own, as soon as I add the second (and especially the third), I start getting strange or inconsistent output—some LEDs don’t light up correctly, or they shift out of order. Is there a timing issue I might be overlooking? Do I need to delay between latching and shifting? Could signal integrity or voltage drop be the issue when chaining several ICs?
View entire post
Answer to: Can anyone suggest a new ESP32 board?
ESP32
Paul
1 year ago
1 Relevance
Several new ESP32 boards have gained popularity in the community recently, each for different reasons depending on the use case—AI, low power, display integration, or future IoT protocols. Here's a breakdown of the most liked ones: ESP32-S3 1. Native USB support (no external serial chip needed)2. Supports AI instructions for image/speech processing ESP32-C3 1. Based on RISC-V architecture 2. Ultra-low power for battery-operated devices M5Stack Series 1. Includes display, case, and built-in sensors2. Modular design for quick and easy prototyping ESP32-C6 1. Features Wi-Fi 6 + Bluetooth 5 + Thread/Zigbee Each has its strengths, so the "most liked" depends on the user's Project needs. But overall, ESP32-S3 and ESP32-C3 are currently leading the popularity charts.
View entire post
Li-ion vs. Li-Po Batteries: Which One Should I Choose?
Theoretical questions
abhinav sing...
1 year ago
1 Relevance
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?
View entire post
Why are ferrite beads used in power supply circuits?
Theoretical questions
Dinesh bhard...
2 years ago
1 Relevance
I’m working on a Project where I need to design a stable power supply, and I’ve seen ferrite beads mentioned a lot in circuit diagrams. I’d like to understand why they are used and how they help in such circuits. Are they mainly for noise reduction or something else? Also, how do I choose the right ferrite bead for my application?
View entire post
Answer to: Difference between EEPROM and Flash?
Hardware/Schematic
Daniel
2 years ago
1 Relevance
Here’s how it is used practically: EEPROM: To store device-specific configurations, like sensor offsets or mode settings. These values are written during setup and rarely change after that. Flash: For storing firmware or read-only data like lookup tables. For example, in an IoT Project, I store calibration data in EEPROM and preloaded HTML pages in Flash for the web server. If your data changes frequently, EEPROM is the better choice due to its higher write endurance. Just don’t forget to minimize unnecessary writes to prolong its lifespan
View entire post
How does Arduino handle floating-point operations?
Programming
electronicb_...
2 years ago
1 Relevance
I’m working on a Project that requires floating-point calculations and would like to understand how Arduino handles them. How efficient are these operations, and what level of precision can I expect? Are there common issues like rounding errors or scenarios where floating-point math should be avoided, especially on boards like the Arduino Uno? Any insights would be greatly appreciated!
View entire post
What is the difference between Arduino Nano Every and Nano RP2040?
Arduino
hobart bess
2 years ago
1 Relevance
I’m trying to decide between the Arduino Nano Every and the Nano RP2040 for a Project. Can someone explain the key differences between these boards in terms of performance, features, and compatibility? Which one would be better suited for general-purpose Projects?
View entire post
Page 4 / 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
  • 10 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