fix temp comparison

This commit is contained in:
Andrew de Quincey 2021-05-01 10:38:49 +01:00
parent 91ca3324c4
commit 83e742c433

View File

@ -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'