Skip to content

Commit 9c16edb

Browse files
authored
Update code.py
1 parent 7a1b1c1 commit 9c16edb

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
@@ -72,7 +72,7 @@ def writetime(the_hr, the_min):
7272
value = value | QUARTER
7373
if (the_min > 47) and (the_min <= 53):
7474
value = value | TENMIN
75-
if the_min => 54:
75+
if the_min >= 54:
7676
value = value | FIVEMIN
7777
# before or after
7878
if the_min <= 30:

0 commit comments

Comments
 (0)