from modules import cbpi from modules.core.controller import KettleController, FermenterController from modules.core.props import Property @cbpi.fermentation_controller 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 ON", True, 0) cooler_offset_max = Property.Number("Cooler Offset OFF", True, 0) def stop(self): super(FermenterController, self).stop() self.heater_off() self.cooler_off() def run(self): while self.is_running(): target_temp = self.get_target_temp() temp = self.get_temp() if temp + float(self.heater_offset_min) <= target_temp: self.heater_on(100) if temp + float(self.heater_offset_max) >= target_temp: self.heater_off() if temp >= target_temp + float(self.cooler_offset_min): self.cooler_on(100) if temp <= target_temp + float(self.cooler_offset_max): self.cooler_off() self.sleep(1)