Skip to content

Commit

Permalink
fixed wednesday
Browse files Browse the repository at this point in the history
  • Loading branch information
sqfmi committed Dec 2, 2021
1 parent 8fb1902 commit e34fbac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ void Watchy7SEG::drawDate(){

String dayOfWeek = dayStr(currentTime.Wday);
display.getTextBounds(dayOfWeek, 5, 85, &x1, &y1, &w, &h);
if(currentTime.Wday == 4){
w = w - 5;
}
display.setCursor(85 - w, 85);
display.println(dayOfWeek);

Expand Down

0 comments on commit e34fbac

Please sign in to comment.