Skip to content

Commit c4599cd

Browse files
committed
Fixed bug in seven segment word clock
1 parent 736169e commit c4599cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sevensegwordclock/sevensegwordclock.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void populateTimeStringAsWords(struct tm * dt) {
111111
hour -= 12;
112112
}
113113
int minute = dt->tm_min;
114-
if (minute >= 33) {
114+
if (minute >= 43) {
115115
hour++;
116116
}
117117
const char *separator = " ";

0 commit comments

Comments
 (0)