Skip to content

Commit 4e108d2

Browse files
authored
Update code.py
1 parent 4bd9de7 commit 4e108d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • CircuitPython_Simple_Wordclock

CircuitPython_Simple_Wordclock/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def writetime(the_hr, the_min):
7777
if the_min >= 54:
7878
value = value | FIVEMIN
7979
# before or after
80-
if (the_min > 3) and (the_min <= 30):
80+
if (the_min > 3) and (the_min <= 32):
8181
value = value | PAST
8282
if the_min >= 33:
8383
the_hr = the_hr + 1 # for the TO case

0 commit comments

Comments
 (0)