瀏覽代碼

Improved descriptions for fermenter hysteresis

tags/3.1_alpha
Carl Allen GitHub 8 年之前
父節點
當前提交
2398ce360d
共有 1 個檔案被更改,包括 4 行新增4 行删除
  1. +4
    -4
      modules/base_plugins/fermenter_hysteresis/__init__.py

+ 4
- 4
modules/base_plugins/fermenter_hysteresis/__init__.py 查看文件

@@ -6,10 +6,10 @@ from modules.core.props import Property
@cbpi.fermentation_controller @cbpi.fermentation_controller
class Hysteresis(FermenterController): class Hysteresis(FermenterController):


heater_offset_min = Property.Number("Heater Offset ON", True, 0, description="Offset as decimal number when the heater is switched on. Should be geather then 'Heater Offset OFF'. For example 2 means the heater will be switched on if the current temperature is 2 degrees above the target temperature")
heater_offset_max = Property.Number("Heater Offset OFF", True, 0, description="Offset as decimal number when the heater is switched off. Should be smaller then 'Heater Offset ON'. For example 1 means the heater will be switched off if the current temperature is 1 degrees above the target temperature")
cooler_offset_min = Property.Number("Cooler Offset ON", True, 0, description="Offset as decimal number when the cooler is switched on. Should be geather then 'Cooler Offset OFF'. For example 2 means the cooler will be switched on if the current temperature is 2 degrees below the target temperature")
cooler_offset_max = Property.Number("Cooler Offset OFF", True, 0, description="Offset as decimal number when the cooler is switched off. Should be less then 'Cooler Offset ON'. For example 1 means the cooler will be switched off if the current temperature is 1 degrees below the target temperature")
heater_offset_min = Property.Number("Heater Offset ON", True, 0, description="Offset as decimal number when the heater is switched on. Should be geather then 'Heater Offset OFF'. For example a value of 2 switch on the heater if the current temperature is 2 degrees below the target temperature")
heater_offset_max = Property.Number("Heater Offset OFF", True, 0, description="Offset as decimal number when the heater is switched off. Should be smaller then 'Heater Offset ON'. For example a value of 1 switch off the heater if the current temperature is 1 degree below the target temperature")
cooler_offset_min = Property.Number("Cooler Offset ON", True, 0, description="Offset as decimal number when the cooler is switched on. Should be geather then 'Cooler Offset OFF'. For example a value of 2 switch on the cooler if the current temperature is 2 degrees above the target temperature")
cooler_offset_max = Property.Number("Cooler Offset OFF", True, 0, description="Offset as decimal number when the cooler is switched off. Should be less then 'Cooler Offset ON'. For example a value of 1 switch off the cooler if the current temperature is 1 degree above the target temperature")


def stop(self): def stop(self):
super(FermenterController, self).stop() super(FermenterController, self).stop()


Loading…
取消
儲存