Skip to content

Commit

Permalink
time format
Browse files Browse the repository at this point in the history
  • Loading branch information
13werwolf13 committed Jan 13, 2022
1 parent e540d10 commit d3fd348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/displayapp/screens/WatchFaceTerminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ void WatchFaceTerminal::Refresh() {
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {

char dateStr[38];
sprintf(dateStr, "[DATE]#007fff %s %s %d#", dateTimeController.DayOfWeekShortToString(), dateTimeController.MonthShortToString(), char(day));
sprintf(dateStr, "[DATE]#007fff 20%d.%02d.%02d#", short(year-2000), char(month), char(day));
lv_label_set_text(label_date, dateStr);


Expand Down

0 comments on commit d3fd348

Please sign in to comment.