From 4e108d26405a6172aff2ec3d50f165db234316c7 Mon Sep 17 00:00:00 2001 From: Mike Barela Date: Wed, 10 Jul 2019 17:40:46 -0400 Subject: [PATCH] Update code.py --- CircuitPython_Simple_Wordclock/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CircuitPython_Simple_Wordclock/code.py b/CircuitPython_Simple_Wordclock/code.py index 27bacc0dd..c267736b1 100644 --- a/CircuitPython_Simple_Wordclock/code.py +++ b/CircuitPython_Simple_Wordclock/code.py @@ -77,7 +77,7 @@ def writetime(the_hr, the_min): if the_min >= 54: value = value | FIVEMIN # before or after - if (the_min > 3) and (the_min <= 30): + if (the_min > 3) and (the_min <= 32): value = value | PAST if the_min >= 33: the_hr = the_hr + 1 # for the TO case