diff --git a/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp b/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp index 8929023..3bbe3ac 100644 --- a/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp +++ b/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp @@ -13,6 +13,12 @@ Watchy7SEG::Watchy7SEG(){} //constructor void Watchy7SEG::drawWatchFace(){ display.fillScreen(DARKMODE ? GxEPD_BLACK : GxEPD_WHITE); display.setTextColor(DARKMODE ? GxEPD_WHITE : GxEPD_BLACK); + if(RTC_WAKE_IGNORE_ACTIVE){ + display.setFont(&Seven_Segment10pt7b); + display.setCursor(53, 182); + display.print("SLEEP MODE"); + return; + } drawTime(); drawDate(); drawSteps();