Skip to content

Commit 03859ea

Browse files
committed
Merge remote-tracking branch 'adafruit/master' into halloween_countdown
2 parents d588b46 + 4e108d2 commit 03859ea

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)