From db78a934a82237522b5d1585d925b7d0d8d8e108 Mon Sep 17 00:00:00 2001 From: Philip Henning Date: Sun, 2 Sep 2018 15:44:30 +0200 Subject: [PATCH] Fix sleep_or_exit timer. Set to default (0.5) --- home_stratum0/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home_stratum0/main.py b/home_stratum0/main.py index 33358f1..c39f74b 100644 --- a/home_stratum0/main.py +++ b/home_stratum0/main.py @@ -83,6 +83,6 @@ while True: if value_battery: text += "Battery: %s%%" % int(value_battery) status.text(text) - sleep_or_exit(5.0) + sleep_or_exit(0.5) app.restart_to_default()