From fc292b03df986a8ffd55d5a602b49d48415c927d Mon Sep 17 00:00:00 2001 From: John Pickup Date: Sat, 24 Jun 2023 09:15:04 +0100 Subject: [PATCH] colours --- lib/oven.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/oven.py b/lib/oven.py index b207a9d..37ff0fb 100644 --- a/lib/oven.py +++ b/lib/oven.py @@ -267,12 +267,12 @@ class Oven(threading.Thread): # kiln too cold, wait for it to heat up if self.target - temp > config.pid_control_window: log.info("kiln must catch up, too cold, shifting schedule") - self.status = "Kiln must catch up, too cold, shifting schedule" + self.status = "Kiln must catch up, too cold" self.start_time = datetime.datetime.now() - datetime.timedelta(milliseconds = self.runtime * 1000) # kiln too hot, wait for it to cool down if temp - self.target > config.pid_control_window: log.info("kiln must catch up, too hot, shifting schedule") - self.status = "Kiln must catch up, too hot, shifting schedule" + self.status = "Kiln must catch up, too hot" self.start_time = datetime.datetime.now() - datetime.timedelta(milliseconds = self.runtime * 1000) def update_runtime(self):