From 3d21f96959dd0ac93c17f14df96adb8495908930 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 31 Mar 2022 01:45:08 -0400 Subject: [PATCH] adding clear screen fix to the display. --- pi-calendar-sign.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pi-calendar-sign.py b/pi-calendar-sign.py index 1f76180..6ce4c6e 100644 --- a/pi-calendar-sign.py +++ b/pi-calendar-sign.py @@ -41,6 +41,7 @@ def format_text(text): def update_display(color, text, cursor = False, blink = False): text = format_text(text) + lcd.clear() lcd.color = color lcd.message = text lcd.cursor = cursor