Skip to content

Commit

Permalink
feat: Add wake up times tracking in deep sleep mode
Browse files Browse the repository at this point in the history
  • Loading branch information
melkati committed Jul 1, 2024
1 parent 2644627 commit 48ad5e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CO2_Gadget_DeepSleep.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ void printRTCMemoryEnter() {
Serial.println("-->[DEEP][ENTER DeepSleep] sendMQTTOnWake: " + String(deepSleepData.sendMQTTOnWake));
Serial.println("-->[DEEP][ENTER DeepSleep] sendESPNowOnWake: " + String(deepSleepData.sendESPNowOnWake));
Serial.println("-->[DEEP][ENTER DeepSleep] displayOnWake: " + String(deepSleepData.displayOnWake));
Serial.println("-->[DEEP][ENTER DeepSleep] Wake up times: " + String(deepSleepData.bootTimes));
#endif
}

Expand All @@ -223,6 +224,7 @@ void printRTCMemoryExit() {
Serial.println("-->[DEEP][EXIT DeepSleep] sendMQTTOnWake: " + String(deepSleepData.sendMQTTOnWake));
Serial.println("-->[DEEP][EXIT DeepSleep] sendESPNowOnWake: " + String(deepSleepData.sendESPNowOnWake));
Serial.println("-->[DEEP][EXIT DeepSleep] displayOnWake: " + String(deepSleepData.displayOnWake));
Serial.println("-->[DEEP][EXIT DeepSleep] Wake up times: " + String(deepSleepData.bootTimes));
#endif
}

Expand Down

0 comments on commit 48ad5e0

Please sign in to comment.