fix call to cool()

This commit is contained in:
Andrew de Quincey 2021-07-03 17:15:16 +01:00
parent ac283ebe79
commit 3914316a31

View File

@ -58,7 +58,7 @@ def recordprofile(csvfile, targettemp):
if stage == 'heating':
if temp >= targettemp:
if not config.simulate:
oven.output.heat(0)
oven.output.cool(0)
stage = 'cooling'
elif stage == 'cooling':