High Deep sleep current on Wemos D1 mini?
Posted: Sun Jul 09, 2017 3:09 pm
I am running a 'clean' Wemos D1 mini of a single lipo cell to the 3,3V input and need as low sleep current as possible. Sleep time in the application is way more that the short 6 minutes the unit actually 'works' after a user triggered (switch) reset.
I trigger the sleep with a:
I was under the impression the current to expect in deep sleep mode should be around 0,03mA, but I get 0,3mA.
Is there anything else I could do or was my expectations simply of by a factor of ten..?
I trigger the sleep with a:
Code: Select all
//Die at 6minutes
die = millis();
if(die > 360000)
{
DBG_OUTPUT_PORT.println("going to sleep");
delay(100);
ESP.deepSleep(0);
}
I was under the impression the current to expect in deep sleep mode should be around 0,03mA, but I get 0,3mA.
Is there anything else I could do or was my expectations simply of by a factor of ten..?