From b0ebd2a01ffbe0a454b603b7fd0bcceb09adcebf Mon Sep 17 00:00:00 2001 From: jbruce12000 Date: Wed, 24 Jul 2024 19:58:02 -0400 Subject: [PATCH] fix for simulated oven start_time so it works with kiln-tuner.py --- lib/oven.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/oven.py b/lib/oven.py index b9aa1cd..fcb6197 100644 --- a/lib/oven.py +++ b/lib/oven.py @@ -585,6 +585,8 @@ class SimulatedOven(Oven): super().__init__() + self.start_time = self.get_start_time(); + # start thread self.start() log.info("SimulatedOven started")