From 7e86c8b53878336ab304342e821e0b32428fdba3 Mon Sep 17 00:00:00 2001 From: John Pickup Date: Thu, 22 Jun 2023 05:23:27 +0100 Subject: [PATCH] add some colour --- lib/oven.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/oven.py b/lib/oven.py index 44c13ba..db25ae6 100644 --- a/lib/oven.py +++ b/lib/oven.py @@ -636,13 +636,13 @@ class PID(): dErr = 0 status = '' if error < (-1 * config.pid_control_window): - status = "kiln outside pid control window, max cooling" + status = "Kiln outside pid control window, max cooling" log.info("kiln outside pid control window, max cooling") output = 0 # it is possible to set self.iterm=0 here and also below # but I dont think its needed elif error > (1 * config.pid_control_window): - status = "kiln outside pid control window, max heating" + status = "Kiln outside pid control window, max heating" log.info("kiln outside pid control window, max heating") output = 1 else: