It's always the board!
Is it this board?
https://www.waveshare.com/wiki/ESP32-C6-Zero
The RGB-LED WS2812B alone has a current around 450 µA when switched off and powered with 3.3V.
Search found 41 matches
- Tue Dec 02, 2025 9:07 am
- Forum: General Discussion
- Topic: ESP32‑C6 Zero deep sleep current draw (~667 µA)
- Replies: 4
- Views: 3743
- Sun Nov 23, 2025 9:13 am
- Forum: Hardware
- Topic: ESP32-S3 started outputting NMEA GPS location frames after EMC disturbance — what mode is this?
- Replies: 12
- Views: 7248
Re: ESP32-S3 started outputting NMEA GPS location frames after EMC disturbance — what mode is this?
Just an additional information:
To get your current position the IDs of a WLAN network and an Internet access are sufficient. A browser can access databases of WLAN access points worldwide, you can check it here:
https://www.w3schools.com/html/html5_geolocation.asp
Just click "Try it yourself" and ...
To get your current position the IDs of a WLAN network and an Internet access are sufficient. A browser can access databases of WLAN access points worldwide, you can check it here:
https://www.w3schools.com/html/html5_geolocation.asp
Just click "Try it yourself" and ...
- Sun Oct 05, 2025 7:27 pm
- Forum: General Discussion
- Topic: Is there a library to receive notifications on ESP32 or ESP8266?
- Replies: 1
- Views: 867
Re: Is there a library to receive notifications on ESP32 or ESP8266?
What kind of notification? Which technology?
I'm using MQTT to send and receive messages on ESP32.
I'm using MQTT to send and receive messages on ESP32.
- Mon Sep 29, 2025 8:39 am
- Forum: Showcase
- Topic: ESP32-S3 --Ultra Low current, remote Lora load controller
- Replies: 6
- Views: 10609
Re: ESP32-S3 --Ultra Low current, remote Lora load controller
I have some ESP32 sensors running on batteries in a similar scenario using WLAN to send measurements every 10 minutes. Most of the battery power is used by the WLAN radio hardware even it's on for only a second. With about 4000 mAh battery capacity it can run up to 4 months on a standard board ...
- Tue Aug 19, 2025 10:41 am
- Forum: Hardware
- Topic: First-Time Project with ESP32 – Need Help Choosing Components
- Replies: 1
- Views: 162
Re: First-Time Project with ESP32 – Need Help Choosing Components
Whether these components are compatible with ESP32 and each other.
This depends on the availability of libraries for these components for the development environment you want to use, e.G. ESP-IDF or Arduino.
I would start with an ESP32 Robot Starter Kit. These are widely available and should ...
This depends on the availability of libraries for these components for the development environment you want to use, e.G. ESP-IDF or Arduino.
I would start with an ESP32 Robot Starter Kit. These are widely available and should ...
- Wed Jul 16, 2025 12:45 pm
- Forum: General Discussion
- Topic: ESP32 interfaced with AHT10 sensor
- Replies: 18
- Views: 681
Re: ESP32 interfaced with AHT10 sensor
power consumed must be in microamperes. how to manage that using ESP32Devkitc V4 and a MOSFET?
Not going to happen -> https://esp32.com/viewtopic.php?t=46102#p149079
so according to you is it not possible to bring the consumption down to microamperes using standard devkit boards? since ...
- Wed Jul 16, 2025 12:37 pm
- Forum: Hardware
- Topic: ESP32P4 module availability
- Replies: 16
- Views: 3266
Re: ESP32P4 module availability
Yes, just click on the pictures on the right side and you see their shop!That's what I'm looking for:
Together with an FCC / EU Red certification
Is this module freely available from WaveShare ?
I see only the deb board with the module...
- Fri Jul 11, 2025 7:37 pm
- Forum: Hardware
- Topic: ESP32P4 module availability
- Replies: 16
- Views: 3266
Re: ESP32P4 module availability
There is a really small P4 board (with C6) from Waveshare: ESP32-P4-NANO
https://www.waveshare.com/wiki/ESP32-P4 ... e#Overview
https://www.waveshare.com/wiki/ESP32-P4 ... e#Overview
- Sun Jul 06, 2025 10:52 am
- Forum: General Discussion
- Topic: ESP32 interfaced with AHT10 sensor
- Replies: 18
- Views: 681
Re: ESP32 interfaced with AHT10 sensor
I'm using an AHT20 sensor on a battery-driven board.
As already recommended here I power the sensor with a GPIO pin. After powering I wait 50ms by calling v
TaskDelay( 50 / portTICK_PERIOD_MS );
to get the sensor up.
One hint for hidden power consumers:
On one board I needed to call rtc_gpio ...
As already recommended here I power the sensor with a GPIO pin. After powering I wait 50ms by calling v
TaskDelay( 50 / portTICK_PERIOD_MS );
to get the sensor up.
One hint for hidden power consumers:
On one board I needed to call rtc_gpio ...
- Tue Jun 03, 2025 2:59 pm
- Forum: ESP-IDF
- Topic: ESP32C6 - Wakeup while Lp core wait for interrupt or halt
- Replies: 3
- Views: 408
Re: ESP32C6 - Wakeup while Lp core wait for interrupt or halt
For example, if you need to monitor the battery voltage/level, you can't do that with LP core on ESP32C6 (because the ADC power domain isn't active when HP core is sleeping).
That's right, but with other ESP32-models it's possible. I'm using the original ESP32-ULP to check ADC-input from an ...