We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e05ac6 commit d2b350dCopy full SHA for d2b350d
1 file changed
CircuitPython_Simple_Wordclock/code.py
@@ -58,7 +58,7 @@ def writetime(the_hr, the_min):
58
value = value | FIVEMIN
59
if (the_min > 7) and (the_min < 13):
60
value = value | TENMIN
61
- if (the_min > 14) and (the_min < 18):
+ if (the_min > 12) and (the_min < 18):
62
value = value | QUARTER
63
if (the_min > 17) and (the_min < 23):
64
value = value | TWENTY
0 commit comments