Skip to content

Commit d2b350d

Browse files
authored
Update code.py
1 parent 0e05ac6 commit d2b350d

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
@@ -58,7 +58,7 @@ def writetime(the_hr, the_min):
5858
value = value | FIVEMIN
5959
if (the_min > 7) and (the_min < 13):
6060
value = value | TENMIN
61-
if (the_min > 14) and (the_min < 18):
61+
if (the_min > 12) and (the_min < 18):
6262
value = value | QUARTER
6363
if (the_min > 17) and (the_min < 23):
6464
value = value | TWENTY

0 commit comments

Comments
 (0)