-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
esp32 - 50mA minimum. #1785
Comments
1- By default the Arduino Core runs always at the maximum speed, so you'll always be in the worst case |
1 - How to settings this on medium? :) |
It's not very simple, but it's possible |
@copercini Thx you for a Link, but it's only gives to me 37mA - still no 10mA |
@Stasikiii yes, it can only be change using IDF, but the result will produce the @lbernstone file, so using https://github.com/lbernstone/arduino-esp32-80MHz procedure you can skip the IDF proccess |
@copercini thx you! |
Maybe you need to cool it to absolute zero 😄 . The testing is done in isolation, without any flash, lights, or gpio traces. You are working in the real world, with a real OS running. esp32-solo-1 modules should be arriving in stores soon, which will be as efficient as you can go with esp32. If you need less power, you get less power... |
Another tips: if you remove the USB to serial converter, LEDs, switch to a better LDO (if you are using one), remove everything except the ESP, I think you can get the 10mA |
Hello
I did radio off by:
#include <WiFi.h>
void setup() {
WiFi.mode(WIFI_OFF);
btStop();
}
but esp32 still consume 50mA of currency.
In datasheet it's described as a 10mA in modem sleep mode.
https://chiptron.cz/ESP32-ESP-WROOM-32/ESP32-ESP-WROOM-32_power_consumption.png
What wrong?
The text was updated successfully, but these errors were encountered: