mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2025-04-06 01:32:45 +08:00
fix: hvac mode of ptc-bath-heater
This commit is contained in:
parent
abd86e58e3
commit
928bab2ba0
@ -111,10 +111,8 @@ class FeatureOnOff(MIoTServiceEntity, ClimateEntity):
|
|||||||
_LOGGER.error('wrong format %s %s, %s', service_name,
|
_LOGGER.error('wrong format %s %s, %s', service_name,
|
||||||
prop_name, self.entity_id)
|
prop_name, self.entity_id)
|
||||||
continue
|
continue
|
||||||
self._attr_supported_features |= (
|
self._attr_supported_features |= ClimateEntityFeature.TURN_ON
|
||||||
ClimateEntityFeature.TURN_ON)
|
self._attr_supported_features |= ClimateEntityFeature.TURN_OFF
|
||||||
self._attr_supported_features |= (
|
|
||||||
ClimateEntityFeature.TURN_OFF)
|
|
||||||
self._prop_on = prop
|
self._prop_on = prop
|
||||||
|
|
||||||
async def async_turn_on(self) -> None:
|
async def async_turn_on(self) -> None:
|
||||||
@ -635,15 +633,10 @@ class PtcBathHeater(FeatureTargetTemperature, FeatureTemperature,
|
|||||||
self._hvac_mode_map = {}
|
self._hvac_mode_map = {}
|
||||||
for item in prop.value_list.items:
|
for item in prop.value_list.items:
|
||||||
if item.name in {'off', 'idle'}:
|
if item.name in {'off', 'idle'}:
|
||||||
if (HVACMode.OFF
|
|
||||||
not in list(self._hvac_mode_map.values())):
|
|
||||||
self._hvac_mode_map[item.value] = HVACMode.OFF
|
self._hvac_mode_map[item.value] = HVACMode.OFF
|
||||||
elif (HVACMode.AUTO
|
break
|
||||||
not in list(self._hvac_mode_map.values())):
|
if self._hvac_mode_map:
|
||||||
self._hvac_mode_map[item.value] = HVACMode.AUTO
|
self._attr_hvac_modes = [HVACMode.AUTO, HVACMode.OFF]
|
||||||
self._attr_hvac_modes = list(self._hvac_mode_map.values())
|
|
||||||
if HVACMode.OFF in self._attr_hvac_modes:
|
|
||||||
self._prop_mode = prop
|
|
||||||
else:
|
else:
|
||||||
_LOGGER.error('no idle mode, %s', self.entity_id)
|
_LOGGER.error('no idle mode, %s', self.entity_id)
|
||||||
# preset modes
|
# preset modes
|
||||||
@ -651,7 +644,7 @@ class PtcBathHeater(FeatureTargetTemperature, FeatureTemperature,
|
|||||||
|
|
||||||
async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:
|
async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:
|
||||||
"""Set the target hvac mode."""
|
"""Set the target hvac mode."""
|
||||||
if self._prop_mode is None:
|
if self._prop_mode is None or hvac_mode != HVACMode.OFF:
|
||||||
return
|
return
|
||||||
mode_value = self.get_map_key(map_=self._hvac_mode_map, value=hvac_mode)
|
mode_value = self.get_map_key(map_=self._hvac_mode_map, value=hvac_mode)
|
||||||
if mode_value is None or not await self.set_property_async(
|
if mode_value is None or not await self.set_property_async(
|
||||||
@ -664,13 +657,12 @@ class PtcBathHeater(FeatureTargetTemperature, FeatureTemperature,
|
|||||||
"""The current hvac mode."""
|
"""The current hvac mode."""
|
||||||
if self._prop_mode is None:
|
if self._prop_mode is None:
|
||||||
return None
|
return None
|
||||||
mode_value = self.get_map_value(
|
current_mode = self.get_prop_value(prop=self._prop_mode)
|
||||||
map_=self._hvac_mode_map,
|
if current_mode is None:
|
||||||
key=self.get_prop_value(prop=self._prop_mode))
|
return None
|
||||||
if mode_value == HVACMode.OFF or mode_value is None:
|
mode_value = self.get_map_value(map_=self._hvac_mode_map,
|
||||||
return mode_value
|
key=current_mode)
|
||||||
return HVACMode.AUTO if (HVACMode.AUTO
|
return HVACMode.OFF if mode_value == HVACMode.OFF else HVACMode.AUTO
|
||||||
in self._attr_hvac_modes) else None
|
|
||||||
|
|
||||||
|
|
||||||
class Thermostat(FeatureOnOff, FeatureTargetTemperature, FeatureTemperature,
|
class Thermostat(FeatureOnOff, FeatureTargetTemperature, FeatureTemperature,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user