Notifications
Clear all
Search result for: WA 0852 2611 9277 [[GLORION]] Biaya Tukang Plafon PVC Foam Board Murah Cisarua Kabupaten Bogor
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
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!
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 ...
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.”
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?
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.
@sophie Glad, you got the replacement for the faulty ESP Board.
... 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 ...
... 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.
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.
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?
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.
Yes, getting the voltage at different points as specified. I feel the Board WAs faulty from the beginning.
@sophie Can you check voltage at different points on the Board? Ex: Vin pin, 5V pin, etc.