We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d588b46 + 4e108d2 commit 03859eaCopy full SHA for 03859ea
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