Skip to content
eT Community

eT Community

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

Search result for:  WA 0852 2611 9277 [[GLORION]] Biaya Tukang Plafon PVC Foam Board Murah Cisarua Kabupaten Bogor

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

 Sort Search Results by:


Page 4 / 7 Prev Next
Why does my ESP8266 keep restarting?
ESP32
DIY Electron...
1 year ago
2 Relevance
I just got a brand new ESP8266 and tried uploading a basic sketch (just a simple Serial.begin() and a few prints), but as soon as it runs, the Board keeps restarting in a loop. I haven’t connected any sensors or peripherals — just powered it via USB. The Serial Monitor keeps showing reset messages like rst cause: 4 or something similar. Is this normal for a new Board? Could it be a power issue, bad code, or something else I’m missing?Would really appreciate any suggestions before I start panicking
View entire post
Answer to: ESP32 not detected. No COM port displayed on my PC
ESP32
Admin
2 years ago
2 Relevance
Hey, this is a very common issue. Let’s troubleshoot: Check the USB Cable: First, make sure you’re using a data-capable USB cable. Some cables (like cheap ones for phone charging) only provide power and can’t transfer data. Try a different cable if you’re unsure. Drivers: Have you installed the necessary drivers? The ESP32 often requires the CP2102 or CH340 USB-to-serial drivers, depending on your Board. You can download these from the manufacturer’s website or search for “ESP32 USB driver.” After downloading the drivers, manually install it(there will be a text file for instructions to follow.) COM Port Visibility: Open your Device Manager (Windows) or System Information (Mac) and check if the ESP32 shows up under Ports or USB Devices. If it's not there, take out the USB cable and insert it again while keeping the device manage window open. If you notice some changes, it's a good sign. So if it’s listed with an error, the drivers might not be properly installed. Power Issues: The fact that the LED turns off could indicate the Board isn’t receiving stable power. Maybe either the port or connector is loose. Let me know how it goes after these steps!
View entire post
Answer to: What is EEPROM in Arduino and how to use it?
Hardware/Schematic
Sebastian
2 years ago
2 Relevance
EEPROM (Electrically Erasable Programmable Read-Only Memory) allows you to store data even after the Board is powered off. It's non-volatile. This makes it useful for storing things like settings, calibration values, or any data you WAnt to retain. Let's understand the different memory types in Arduino: SRAM: Works as temporary storage while the program is running. Data in SRAM is lost when the power is turned off. Flash Memory: The Arduino stores your program code here. Like EEPROM, flash memory is non-volatile, but you can't store or retrieve any data d ...
View entire post
Arduino Code Not Uploading – What Could Be the Issue?
Arduino
Zane_Tech
1 year ago
1 Relevance
I'm trying to upload a sketch to my Arduino Board, but it keeps failing. I'm using the Arduino IDE, and I’ve double-checked my code—it compiles fine. However, during upload, I get an error message like “avrdude: stk500_recv(): programmer is not responding” or “timeout communicating with programmer.”
View entire post
ESP32 vs RP2040 – Which is better after Arduino?
ESP32
Neil_Overtor...
1 year ago
1 Relevance
I've worked with Arduino before and WAnt to try something new for my next robotics project. I'm considering either the ESP32 or the RP2040. The project might involve sensors and wireless communication. Which Board would be a better step forward, and why?
View entire post
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
RE: ESP32 not detected. No COM port displayed on my PC
ESP32
Admin
2 years ago
1 Relevance
@sophie Glad, you got the replacement for the faulty ESP Board.
View entire post
Answer to: New Pi Pico 2 by Raspberry Pi—What are your opinions?
RPi Pico
nathan
2 years ago
2 Relevance
... to tackle more complex tasks. Personally, I’ve always appreciated the balance of power and simplicity with the original Pico, but these upgrades might make the Pico 2 a more versatile tool for hobbyists. I’m particularly interested in how the increased memory could improve multitasking on the Board. It might even make the Pico 2 a stronger competitor against some of the more expensive microcontrollers out there. What blew me is the price they are selling it for, just $5 for this, is insane That said, I’m also curious about power consumption and heat mana ...
View entire post
Answer to: How can I safely power a BLDC motor from a hard disk drive?
Theoretical questions
Divyam
10 months ago
1 Relevance
... but may be difficult; a microcontroller + driver is great for learning but not the easiest. To find the pinout, measure resistance with a multimeter: with 3 wires, all pairwise readings should match (the three phases); with 4 wires, the pin that reads the same to all others is the neutral; phase order only affects direction, so swap any two leads to reverse. To avoid damage, never apply DC across two leads, don’t stall the rotor, keep leads short (with a decoupling capacitor near the driver), and WAtch temperature.
View entire post
Answer to: SPI vs I2C vs UART: which interface should I use for my application and why?
Theoretical questions
Jaden
11 months ago
1 Relevance
I²C is the best single interface choice for on-board sensors when the priorities are minimal pins, low power, and reliable data. It uses just two shared wires, is supported by a wide range of low-power sensors, and enables software power-down strategies; address conflicts and pull-up sizing are the main practical considerations, both of which have straightforward hardware or firmware workarounds. If desired, a follow-up reply can include example pull-up values, suggested load-switch parts for power gating, or a short checklist to confirm sensor address and sleep capability before PCB finalization.
View entire post
How can I interface an AI camera module with Arduino?
Hardware/Schematic
DIY Electron...
12 months ago
1 Relevance
I’ve seen AI camera modules (like ESP32-CAM, HuskyLens, and OpenMV) that can perform tasks such as face recognition, object tracking, and color detection. I’m curious about how these modules can be interfaced with an Arduino Board. Can Arduino Uno or Nano handle direct data processing from these AI modules, or do they just act as a controller? What’s the best WAy to connect them—UART, I2C, or SPI? Are there any limitations when using AI modules with Arduino compared to ESP32 or Raspberry Pi?
View entire post
Answer to: I’m getting noise on my analog readings—how can I clean them up?
Arduino
Mehjabeen
1 year ago
1 Relevance
Analog noise in Arduino readings is common, especially with sensors like potentiometers or temperature sensors. To reduce it, start by adding a 0.1µF to 1µF capacitor between the analog pin and ground to filter high-frequency noise. Use a stable power source instead of USB and keep analog wires short to avoid interference. Shielding cables and using twisted pair wires can also help. On the software side, try an exponential moving average (EMA) filter for smooth readings without much delay. You can also use analogReference(INTERNAL) for better voltage stability if your Board supports it. Combining basic hardware filtering with lightweight software smoothing usually provides the best results.
View entire post
RE: ESP32 not detected. No COM port displayed on my PC
ESP32
Sophie
2 years ago
1 Relevance
Yes, getting the voltage at different points as specified. I feel the Board WAs faulty from the beginning.
View entire post
RE: ESP32 not detected. No COM port displayed on my PC
ESP32
Admin
2 years ago
1 Relevance
@sophie Can you check voltage at different points on the Board? Ex: Vin pin, 5V pin, etc.
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 months ago

  • Admin

    RE: esp32 diagram connection

    @wmughal What do you want to achieve here exactly?

    By Admin , 5 months ago

  • DIY an RF power meter Based on STM32F103 + MAX4003

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

    By anselbevier , 5 months ago

  • esp32 diagram connection

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

    By wmughal , 5 months ago

  • Admin

    RE: Motor driver not working properly

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

    By Admin , 6 months ago

  • Motor driver not working properly

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

    By Noochee , 6 months ago

  • Answer to: Bluetooth Speaker won't turn on

    Translator Sorry, this i...

    By servitec , 7 months ago

  • Bluetooth Speaker won't turn on

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

    By servitec , 7 months ago

  • Answer to: Why Fluke multimeters are so expensive?

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

    By maryjlee , 10 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 312 Topics
  • 779 Posts
  • 2 Online
  • 298 Members
Our newest member: bahinaashley
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.5

© 2026 eT Community • Built with GeneratePress