Add padding to LCD text output for improved visibility

This commit is contained in:
Aaro Varis
2026-01-15 11:02:46 +02:00
parent 437c106789
commit 752ae6573b

View File

@@ -120,7 +120,7 @@ class AlarmClock:
def setLcdText(self, text: str):
self.lcd.clear()
self.lcd.write(text)
self.lcd.write(" "+text)
print(f"LCD: {text}")