aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorD Delmar Davis <don@suspectdevices.com>2025-07-10 17:05:12 -0700
committerD Delmar Davis <don@suspectdevices.com>2025-07-10 17:05:12 -0700
commit00e89ca4fab8c095e6ead0405bdb29b7f0c2c616 (patch)
tree3066cda406b47f15fdf900132561a15addfc6422 /bin
parentd041e508ad9c1dfab4b12316eb5b9d64c38a4199 (diff)
forgot the loop
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bigclock.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/bigclock.py b/bin/bigclock.py
index 4a6eb29..9ab475d 100755
--- a/bin/bigclock.py
+++ b/bin/bigclock.py
@@ -80,5 +80,6 @@ def printTime():
lcd.message=datetime.now().strftime("%d%b")
if __name__ == '__main__':
- printTime()
- time.sleep(60)
+ while true:
+ printTime()
+ time.sleep(60)