diff --git a/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp b/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp index 7389f14..32f41c4 100644 --- a/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp +++ b/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp @@ -51,6 +51,10 @@ void Watchy7SEG::drawDate(){ uint16_t w, h; String dayOfWeek = dayStr(currentTime.Wday); + if (currentTime.Wday == 4) + { + dayOfWeek = "Wednesdy"; + } display.getTextBounds(dayOfWeek, 5, 85, &x1, &y1, &w, &h); display.setCursor(85 - w, 85); display.println(dayOfWeek);