diff options
| author | D Delmar Davis <don@suspectdevices.com> | 2025-07-10 17:05:12 -0700 |
|---|---|---|
| committer | D Delmar Davis <don@suspectdevices.com> | 2025-07-10 17:05:12 -0700 |
| commit | 00e89ca4fab8c095e6ead0405bdb29b7f0c2c616 (patch) | |
| tree | 3066cda406b47f15fdf900132561a15addfc6422 | |
| parent | d041e508ad9c1dfab4b12316eb5b9d64c38a4199 (diff) | |
forgot the loop
| -rwxr-xr-x | bin/bigclock.py | 5 |
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) |
