We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bd9de7 commit 4e108d2Copy full SHA for 4e108d2
1 file changed
CircuitPython_Simple_Wordclock/code.py
@@ -77,7 +77,7 @@ def writetime(the_hr, the_min):
77
if the_min >= 54:
78
value = value | FIVEMIN
79
# before or after
80
- if (the_min > 3) and (the_min <= 30):
+ if (the_min > 3) and (the_min <= 32):
81
value = value | PAST
82
if the_min >= 33:
83
the_hr = the_hr + 1 # for the TO case
0 commit comments