I have been testing the deepsleep function on the huzzah board and the board crashes average after 9 to 14 consecutive deepsleep and wakeup cycles.
Sometimes it crashes with only 3 to 4 deepsleep and wakeup cycles and sometimes goes to about 20 plus cycles before crashing.
Here is the sketch I use:
include "Esp.h"
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(ESP.getResetReason());
Serial.println();
delay(100);
ESP.deepSleep(1000000, WAKE_RF_DEFAULT); // Sleep for 1 second
}
void loop()
{
}
I have been testing the deepsleep function on the huzzah board and the board crashes average after 9 to 14 consecutive deepsleep and wakeup cycles.
Sometimes it crashes with only 3 to 4 deepsleep and wakeup cycles and sometimes goes to about 20 plus cycles before crashing.
Here is the sketch I use:
include "Esp.h"
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(ESP.getResetReason());
Serial.println();
delay(100);
ESP.deepSleep(1000000, WAKE_RF_DEFAULT); // Sleep for 1 second
}
void loop()
{
}