From a062807b9119afc0504351d2e104132535e1dd49 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Fri, 28 Apr 2023 09:43:24 +0200 Subject: [PATCH] Remove splash screen --- src/apps/plant.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/apps/plant.py b/src/apps/plant.py index 96a055b..896d3ac 100644 --- a/src/apps/plant.py +++ b/src/apps/plant.py @@ -245,16 +245,6 @@ def get_time(): return fix_dst(*display.rtc.datetime()) -def splash_screen(): - display.set_pen(WHITE) - display.clear() - display.set_pen(BLACK) - display.text("Starting plant app...", 10, 10, 300, 0.5) - display.set_update_speed(UPDATE_FAST) - display.update() - - -splash_screen() while True: try: main()