summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornasrlol <nsrddyn@gmail.com>2024-11-13 00:50:55 +0100
committernasrlol <nsrddyn@gmail.com>2024-11-13 00:50:55 +0100
commit1b9748da64281bc6fe5a808e744922ecc72fc6ba (patch)
tree1c6ace35677bfec472c65a471931df3d2058967c
parent924cde73d031e0019ca364c97f1d3d291fc0b98e (diff)
fixed the notes function output bug, only bug left fixeing the display doing funky
-rw-r--r--bin/kasper_source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/kasper_source.py b/bin/kasper_source.py
index e1110a1..8067997 100644
--- a/bin/kasper_source.py
+++ b/bin/kasper_source.py
@@ -119,7 +119,7 @@ def notes():
119 while True: 119 while True:
120 OUTPUT = input() 120 OUTPUT = input()
121 print(OUTPUT) 121 print(OUTPUT)
122 lcd.display_text() 122 lcd.display_text(OUTPUT, 1)
123 sleep(2) 123 sleep(2)
124 124
125 125