Skip to content

Commit

Permalink
Raise minimum value for demand control
Browse files Browse the repository at this point in the history
Below 15 it will be treated as 100% (off) and below 20% there is no change
  • Loading branch information
kamaradclimber committed Oct 23, 2023
1 parent 1957213 commit 071a4dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/aquarea/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def build_numbers(mqtt_prefix: str) -> list[HeishaMonNumberEntityDescription]:
name="Demand Control",
entity_category=EntityCategory.CONFIG,
native_unit_of_measurement="%",
native_min_value=5,
native_min_value=20,
native_max_value=100,
native_step=5,
state=read_demandcontrol,
Expand Down

0 comments on commit 071a4dc

Please sign in to comment.