From 83e742c433d8cd0db7225a3093aa1301a7f99752 Mon Sep 17 00:00:00 2001 From: Andrew de Quincey Date: Sat, 1 May 2021 10:38:49 +0100 Subject: [PATCH] fix temp comparison --- kiln-tuner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiln-tuner.py b/kiln-tuner.py index dc8606c..3171202 100755 --- a/kiln-tuner.py +++ b/kiln-tuner.py @@ -57,7 +57,7 @@ def tune(csvfile, targettemp): f.flush() if stage == 'heating': - if temp > targettemp: + if temp >= targettemp: if not config.simulate: oven.output.heat(0) stage = 'cooling'