Search found 59 matches
- Thu Apr 30, 2026 10:42 pm
- Forum: Hardware
- Topic: External Interrupt Triggers Multiple Times from One Event
- Replies: 2
- Views: 69
Re: External Interrupt Triggers Multiple Times from One Event
Would comparator hysteresis be the correct hardware fix?
Yes, it will fix thigns ... what’s happening here is:
Input hovers around the threshold
Noise causes the comparator to toggle rapidly
MCU sees multiple edges .... so multiple interrupts
Adding hysteresis (positive feedback) creates two ...
- Mon Apr 27, 2026 2:48 pm
- Forum: Hardware
- Topic: ESP32 development workflow: anyone using PCB fab toolkits or full automation pipelines?
- Replies: 0
- Views: 53
ESP32 development workflow: anyone using PCB fab toolkits or full automation pipelines?
Hi all,
I’ve been optimizing my ESP32 hardware workflow lately and came across tools that try to automate the PCB manufacturing handoff directly from EDA tools (KiCad, etc.).
For example, some toolkits can generate everything in one step:
Gerber files
BOM (with MPNs)
Pick-and-place files
Assembly ...
I’ve been optimizing my ESP32 hardware workflow lately and came across tools that try to automate the PCB manufacturing handoff directly from EDA tools (KiCad, etc.).
For example, some toolkits can generate everything in one step:
Gerber files
BOM (with MPNs)
Pick-and-place files
Assembly ...
- Tue Mar 17, 2026 10:37 am
- Forum: Hardware
- Topic: ESP32 RGB LED strip project
- Replies: 5
- Views: 355
Re: ESP32 RGB LED strip project
I would recommend separate planes for high-current LED power and ESP32 logic ..... especially if your board is big or the LEDs draw a lot of current ..... that keeps switching noise away from the logic.
For smaller boards with short traces, a single ground plane can work as long as you carefully ...
For smaller boards with short traces, a single ground plane can work as long as you carefully ...
- Mon Mar 16, 2026 8:40 am
- Forum: Hardware
- Topic: ESP32 RGB LED strip project
- Replies: 5
- Views: 355
Re: ESP32 RGB LED strip project
As stated by Sprite, its a power issue .... Your ESP32 likely resets because the LED strip draws high current spikes, which can cause voltage drop on 3.3 V. .... Use a separate 5 V supply for the LEDs, keep the ESP32 logic supply isolated, and make sure the grounds are connected at a single point ...
- Tue Mar 03, 2026 2:40 am
- Forum: General Discussion
- Topic: ESP32-S3 Low voltage causing UART pins to become defective?
- Replies: 2
- Views: 113
Re: ESP32-S3 Low voltage causing UART pins to become defective?
Search out brown-out spikes .... Your ESP32 GPIOs are likely getting damaged ..... when the battery drops very low.
Best practice is to place a 10–100 µF capacitor across 3.3 V and GND near the LoRa module.
I wouold recommend yo u to use 100–220 ohm resistor on TX/RX
Check this guide, will save ...
Best practice is to place a 10–100 µF capacitor across 3.3 V and GND near the LoRa module.
I wouold recommend yo u to use 100–220 ohm resistor on TX/RX
Check this guide, will save ...
- Tue Mar 03, 2026 2:30 am
- Forum: General Discussion
- Topic: ESP32 Low Cost Oscilloscope – Need Help with ADC Accuracy and Display
- Replies: 1
- Views: 192
ESP32 Low Cost Oscilloscope – Need Help with ADC Accuracy and Display
Hello all,
I’m in the middle of trying to build a DIY Low-cost oscilloscope with ESP32 .... but I’m running into a few issues and could use some hlp. HEre's my setup:
1) ESP32 Dev Kit (WROOM-32)
2) Attempting to read analog signals (0–3.3V) via the onboard ADC
3) Planning to display results on ...
I’m in the middle of trying to build a DIY Low-cost oscilloscope with ESP32 .... but I’m running into a few issues and could use some hlp. HEre's my setup:
1) ESP32 Dev Kit (WROOM-32)
2) Attempting to read analog signals (0–3.3V) via the onboard ADC
3) Planning to display results on ...
- Tue Mar 03, 2026 2:15 am
- Forum: General Discussion
- Topic: ESP32 - CAM
- Replies: 2
- Views: 137
Re: ESP32 - CAM
Most likely its not a dead board .... power or boot issue
ESP32-CAM should be powered from 5V pin ... FT232 adapters often cant supply enough current ... resulting in “no serial data” error
ESP32-CAM should be powered from 5V pin ... FT232 adapters often cant supply enough current ... resulting in “no serial data” error
- Fri Jan 09, 2026 4:14 am
- Forum: ESP RainMaker
- Topic: Multiple time-series parameters per device
- Replies: 3
- Views: 5997
Re: Multiple time-series parameters per device
This is a known limitation of the RainMaker app ..... it only shows charts for one time-series parameter per device. Your code and updates are fine, the data is being stored .... the app just don’t render multiple charts.
- Fri Jan 09, 2026 4:10 am
- Forum: ESP8266
- Topic: Which module is more reliable for sensor-based IoT projects — Wemos D1 Mini or ESP-01?
- Replies: 1
- Views: 7892
Re: Which module is more reliable for sensor-based IoT projects — Wemos D1 Mini or ESP-01?
I think you should go with Wemos D1 Mini, more reliable, flexible in pinout. You have shared seperate product modules, instead of that you should go for a single pcb package, something like this: https://www.pcbway.com/project/shareproject/IoT_Basic_Kit_ESP8266_Wemos_D1_Mini_3d9c62cd.html
All your ...
All your ...
- Wed Dec 31, 2025 5:12 pm
- Forum: General Discussion
- Topic: Should I use no_sleep power managment lock when using uart_write_bytes
- Replies: 1
- Views: 969
Re: Should I use no_sleep power managment lock when using uart_write_bytes
You should use the PM lock. uart_write_bytes() does not acquire power-management locks. The UART driver allows light sleep during transmission. Light sleep pauses UART output mid-frame. Paused output resumes later, creating timing gaps. Data is not lost, but timing is broken. GNSS devices often ...