So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By frasersnow
#63886 I have trying to get the current down to 10uA during deep sleep. As per specs on page 18
http://www.exp-tech.de/pdf/products/ESP ... ule-EN.pdf

The best I can do is 0.36 mA. I tried 3 different ES12F modules like the ones below.
https://tronixlabs.com.au/wireless/esp8 ... australia/

I been testing these modules stand alone, so not on a breadboard with any regulator or USB / Serial components.

This is the sample code I have been using to test.

// Time to sleep (in seconds):
const int sleepTimeS = 15;

void setup()
{

// Serial
Serial.begin(115200);
delay(10);
Serial.println("");
Serial.println("ESP8266 Woke Up");

// Sleep
Serial.println("ESP8266 Going To Slepp");
//ESP.deepSleep(sleepTimeS * 1000000,WAKE_RF_DEFAULT );
ESP.deepSleep(sleepTimeS * 1000000,WAKE_RF_DISABLED );

}

void loop()
{

}

Any help would be appreciated.
User avatar
By frasersnow
#63992
IMG_1628.JPG
Thanks you both for the reply. Unfortunately still 0.36 mA in sleep. Also tried another meter just in case.
I must admit, I haven't tried removing the resistors and just tying the appropriate pins vcc / GND
You do not have the required permissions to view the files attached to this post.