Bump aiosomecomfort to 0.0.8 (#88195)
* Update is_aux_heat in runtime * Fix merge mistake * Merge fixes 2.0 * Bump aiosomecomfort to 0.0.8pull/88230/head^2
parent
8c821c8969
commit
d46bbcf5a3
|
@ -126,7 +126,6 @@ class HoneywellUSThermostat(ClimateEntity):
|
|||
if device.temperature_unit == "C":
|
||||
self._attr_temperature_unit = UnitOfTemperature.CELSIUS
|
||||
self._attr_preset_modes = [PRESET_NONE, PRESET_AWAY, PRESET_HOLD]
|
||||
self._attr_is_aux_heat = device.system_mode == "emheat"
|
||||
|
||||
# not all honeywell HVACs support all modes
|
||||
|
||||
|
@ -262,6 +261,11 @@ class HoneywellUSThermostat(ClimateEntity):
|
|||
|
||||
return None
|
||||
|
||||
@property
|
||||
def is_aux_heat(self) -> bool | None:
|
||||
"""Return true if aux heater."""
|
||||
return self._device.system_mode == "emheat"
|
||||
|
||||
@property
|
||||
def fan_mode(self) -> str | None:
|
||||
"""Return the fan setting."""
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/honeywell",
|
||||
"iot_class": "cloud_polling",
|
||||
"loggers": ["somecomfort"],
|
||||
"requirements": ["aiosomecomfort==0.0.6"]
|
||||
"requirements": ["aiosomecomfort==0.0.8"]
|
||||
}
|
||||
|
|
|
@ -276,7 +276,7 @@ aioskybell==22.7.0
|
|||
aioslimproto==2.1.1
|
||||
|
||||
# homeassistant.components.honeywell
|
||||
aiosomecomfort==0.0.6
|
||||
aiosomecomfort==0.0.8
|
||||
|
||||
# homeassistant.components.steamist
|
||||
aiosteamist==0.3.2
|
||||
|
|
|
@ -254,7 +254,7 @@ aioskybell==22.7.0
|
|||
aioslimproto==2.1.1
|
||||
|
||||
# homeassistant.components.honeywell
|
||||
aiosomecomfort==0.0.6
|
||||
aiosomecomfort==0.0.8
|
||||
|
||||
# homeassistant.components.steamist
|
||||
aiosteamist==0.3.2
|
||||
|
|
Loading…
Reference in New Issue