I trigger the sleep with a:
//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..?