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!