Added a on_time_multiplier to be 0.8

This should help to a better scaling of certain numbers
This commit is contained in:
Nicolas Bachschwell 2024-06-04 10:14:56 +02:00
parent 30db0802a0
commit f3d7f4183a
Signed by: NBSgamesAT
GPG Key ID: 2D73288FF7AEED2F
2 changed files with 2 additions and 1 deletions

View File

@ -191,6 +191,7 @@ chlorine_pump:
cycle_modifiers:
min_on_time: 30
max_on_time: 240
on_time_multiplier: 0.8
on_pump_value:
- lambda: |-
if(pState != id(last_pump_state)){

View File

@ -26,7 +26,7 @@ CONF_PUMP_TIME_DIVIDER = "pump_time_divider"
CONF_CYCLE_MODIFIERS = "cycle_modifiers"
CONF_MIN_ON_TIME = "min_on_time"
CONF_MAX_ON_TIME = "max_on_time"
CONF_CYCLE_TIME_MULTIPLIER = "on_time_modifier"
CONF_CYCLE_TIME_MULTIPLIER = "on_time_multiplier"
CONF_CYCLE_TIME_OFFSET = "on_time_offset"
CONF_CYCLE_TIME_IGNORE_MAX_X_BELOW_TARGET = "ignore_max_x_below_target"