diff options
| author | D Delmar Davis <don@suspectdevices.com> | 2025-07-11 09:03:52 -0700 |
|---|---|---|
| committer | D Delmar Davis <don@suspectdevices.com> | 2025-07-11 09:03:52 -0700 |
| commit | a875c9dd67a1413fb75e938f46bc7dfaaf85fd37 (patch) | |
| tree | bf792ec7f63fc0f0ab265cca6aaeab7208a5d3bc /bin | |
| parent | 85f9728e1e11cabd7af5b05e9326225be70e630f (diff) | |
need more coffee
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/bigclock.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bigclock.py b/bin/bigclock.py index 78fca96..d27d8a8 100755 --- a/bin/bigclock.py +++ b/bin/bigclock.py @@ -77,11 +77,11 @@ def printTime(): clearCollumn(10) printNum4(int(date_string[3]),11) lcd.cursor_position(14,0) - lcd.message=date_string[:-2 + lcd.message=date_string[:-2] lcd.cursor_position(15,1) lcd.message=datetime.now().strftime("%d%b") if __name__ == '__main__': while True: printTime() - time.sleep(5)
\ No newline at end of file + time.sleep(5) |
