From 8487df72162c9878bcff973a87370aca3dc6eed5 Mon Sep 17 00:00:00 2001 From: John Pickup Date: Fri, 16 Jun 2023 10:03:25 +0100 Subject: [PATCH] . --- lib/ovenDisplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ovenDisplay.py b/lib/ovenDisplay.py index 0687fcf..bc15ce0 100644 --- a/lib/ovenDisplay.py +++ b/lib/ovenDisplay.py @@ -46,7 +46,7 @@ class OvenDisplay(threading.Thread): log.info(oven_state_json) state = json.loads(oven_state_json) log.info(state) - self.text("Temp: {0:2.1f} °C".format(state['temperature']), (25, 25), fnt75, (255, 255, 255)) + self.text("{0:2.1f} °C".format(state['temperature']), (25, 25), fnt75, (255, 255, 255)) self.text("Target: {0:2.1f} °C".format(state['target']), (25, 100), fnt25, (255, 255, 255)) if (state['profile'] is not None): self.text(state['profile'], (25, 175), fnt25, (255, 255, 255))