- commented out a check so sim would run

- made force param always on so saves of schedule changes work as expected
This commit is contained in:
jbruce
2018-11-21 11:35:28 -05:00
parent db303ed921
commit 3c1f0848af
2 changed files with 5 additions and 4 deletions
+3 -3
View File
@@ -128,9 +128,9 @@ class Oven (threading.Thread):
# If the heat is on and nothing is changing, reset
# The direction or amount of change does not matter
# This prevents runaway in the event of a sensor read failure
if temperature_count > 20:
log.info("Error reading sensor, oven temp not responding to heat.")
self.reset()
#if temperature_count > 20:
# log.info("Error reading sensor, oven temp not responding to heat.")
# self.reset()
else:
temperature_count = 0