From 3914316a3174ad6d997e02d80edc0e6baf9c42d3 Mon Sep 17 00:00:00 2001 From: Andrew de Quincey Date: Sat, 3 Jul 2021 17:15:16 +0100 Subject: [PATCH] fix call to cool() --- kiln-tuner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiln-tuner.py b/kiln-tuner.py index f9116d6..aeaf13b 100755 --- a/kiln-tuner.py +++ b/kiln-tuner.py @@ -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':