mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Bump evohome client to 0.4.17 (#108051)
This commit is contained in:
parent
c3e8e931e6
commit
dd2527db5b
@ -248,16 +248,20 @@ class EvoZone(EvoChild, EvoClimateEntity):
|
||||
def min_temp(self) -> float:
|
||||
"""Return the minimum target temperature of a Zone.
|
||||
|
||||
The default is 5, but is user-configurable within 5-35 (in Celsius).
|
||||
The default is 5, but is user-configurable within 5-21 (in Celsius).
|
||||
"""
|
||||
if self._evo_device.min_heat_setpoint is None:
|
||||
return 5
|
||||
return self._evo_device.min_heat_setpoint
|
||||
|
||||
@property
|
||||
def max_temp(self) -> float:
|
||||
"""Return the maximum target temperature of a Zone.
|
||||
|
||||
The default is 35, but is user-configurable within 5-35 (in Celsius).
|
||||
The default is 35, but is user-configurable within 21-35 (in Celsius).
|
||||
"""
|
||||
if self._evo_device.max_heat_setpoint is None:
|
||||
return 35
|
||||
return self._evo_device.max_heat_setpoint
|
||||
|
||||
async def async_set_temperature(self, **kwargs: Any) -> None:
|
||||
|
@ -5,5 +5,5 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/evohome",
|
||||
"iot_class": "cloud_polling",
|
||||
"loggers": ["evohomeasync", "evohomeasync2"],
|
||||
"requirements": ["evohome-async==0.4.15"]
|
||||
"requirements": ["evohome-async==0.4.17"]
|
||||
}
|
||||
|
@ -806,7 +806,7 @@ eufylife-ble-client==0.1.8
|
||||
# evdev==1.6.1
|
||||
|
||||
# homeassistant.components.evohome
|
||||
evohome-async==0.4.15
|
||||
evohome-async==0.4.17
|
||||
|
||||
# homeassistant.components.faa_delays
|
||||
faadelays==2023.9.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user