I have been trying to figure out how lowPower.deepSleep(ms) works? I initially thought that after it woke up after xx ms, it would continue on in the loop from the lowPower.deepSleep() call. It is not behaving as expected. Does anyone know definitely what happens after it wakes up? Does it start at the setup loop again, start at the beginning of the main loop, is it supposed to go to the next line after the deep sleep????
1 Like
Next line after: LowPower.deepSleep(60000);
Serial.println("Iām awake");
That will deep sleep for sixty seconds then when it wakes will print āIām awake!ā to the serial monitor.
Are you using a capital letter at the start?
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.