We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb649e0 commit 3924ac1Copy full SHA for 3924ac1
examples/AlarmTimedWakeup/AlarmTimedWakeup.ino
@@ -69,11 +69,13 @@ void loop() {
69
Serial.print("Alarm Match: ");
70
Serial.print(alarmMatch_counter);
71
Serial.println(" times.");
72
- Serial.flush();
+ Serial.end();
73
digitalWrite(LED_BUILTIN, HIGH);
74
LowPower.deepSleep();
75
digitalWrite(LED_BUILTIN, LOW);
76
77
+ Serial.begin(115200);
78
+ while (!Serial) {}
79
}
80
81
void alarmMatch(void* data) {
0 commit comments