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'