Update __init__.py

removed lines 37 and 38 to make hysteresis work properly.
This commit is contained in:
clearwaterbrewer
2018-04-05 10:49:35 -04:00
committed by GitHub
parent 5efa1df350
commit faa2b9d32c
@@ -34,7 +34,5 @@ class Hysteresis(KettleController):
self.heater_on(100) self.heater_on(100)
elif self.get_temp() >= self.get_target_temp() - float(self.off): elif self.get_temp() >= self.get_target_temp() - float(self.off):
self.heater_off() self.heater_off()
else:
self.heater_off()
self.sleep(1) self.sleep(1)