Skip to content

Commit

Permalink
Allow DHW minimum temperature of 40 degrees
Browse files Browse the repository at this point in the history
This change is in-line with what actual Heat Pump allows to set
  • Loading branch information
giedriuskilcauskas authored and kamaradclimber committed Nov 2, 2022
1 parent 0cddebb commit f24f4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/aquarea/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(
)
self._attr_hvac_modes = [HVACMode.HEAT, HVACMode.OFF]
self._attr_hvac_mode = HVACMode.OFF
self._attr_min_temp = 45
self._attr_min_temp = 40
self._attr_max_temp = 65
self._operating_mode = OperatingMode(0) # i.e None
self._attr_preset_modes = [PRESET_ECO, PRESET_COMFORT]
Expand Down

0 comments on commit f24f4fa

Please sign in to comment.