From 20b535b2934b1c6387827d162c3927b2e20d5d6e Mon Sep 17 00:00:00 2001 From: MikonosII Date: Thu, 6 Jul 2017 16:49:44 -0700 Subject: [PATCH] Update __init__.py swapped .PropertyNumber("Cooler Offset ON", True, 0) on lines 11 and 12. On should match with min and Off should match with max on lines 32 and 35 --- modules/base_plugins/fermenter_hysteresis/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/base_plugins/fermenter_hysteresis/__init__.py b/modules/base_plugins/fermenter_hysteresis/__init__.py index fdc5331..14258b1 100644 --- a/modules/base_plugins/fermenter_hysteresis/__init__.py +++ b/modules/base_plugins/fermenter_hysteresis/__init__.py @@ -8,8 +8,8 @@ class Hysteresis(FermenterController): heater_offset_min = Property.Number("Heater Offset ON", True, 0) heater_offset_max = Property.Number("Heater Offset OFF", True, 0) - cooler_offset_min = Property.Number("Cooler Offset OFF", True, 0) - cooler_offset_max = Property.Number("Cooler Offset ON", True, 0) + cooler_offset_min = Property.Number("Cooler Offset ON", True, 0) + cooler_offset_max = Property.Number("Cooler Offset OFF", True, 0) def stop(self): super(FermenterController, self).stop()