How disconnect modem in order to save power.
Posted: Wed Jul 24, 2019 6:44 pm
Hi all!,
I work on a project where I dont need to use wifi nor BT.
With the ESP8266, I achieve a 20ma total current using:
But with the ESP32 (mini board) I cant achieve a current below 60ma.
Is there a way to have a lower power consumption?
Thanks in advance!
I work on a project where I dont need to use wifi nor BT.
With the ESP8266, I achieve a 20ma total current using:
Code: Select all
WiFi.mode(WIFI_OFF);
delay(2);
WiFi.forceSleepBegin();
delay(2);
Is there a way to have a lower power consumption?
Thanks in advance!