From 90eaacd58993fce6546e48640460d5a298155ffe Mon Sep 17 00:00:00 2001 From: Michael-Paul Moore Date: Sun, 10 Apr 2022 15:02:11 -0700 Subject: [PATCH] Fixed offset for drawing clock --- src/WatchyExpanded.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/WatchyExpanded.cpp b/src/WatchyExpanded.cpp index 17fcdef..01e5aa7 100644 --- a/src/WatchyExpanded.cpp +++ b/src/WatchyExpanded.cpp @@ -65,6 +65,7 @@ void CWatchyExpanded::DrawBasicClock() m_display.setFullWindow(); m_display.fillScreen(GxEPD_BLACK); m_display.setFont(&FreeMonoBold9pt7b); + m_display.setCursor(0, 17); tm currentLocalTime; currentLocalTime.tm_wday = m_currentTime.Wday - 1;