From dd46aa02f65501cfdda4e66bc1622feca2e95da1 Mon Sep 17 00:00:00 2001 From: LiShuzhen Date: Mon, 17 Mar 2025 14:58:37 +0800 Subject: [PATCH] fix: the service name of the mode property --- custom_components/xiaomi_home/climate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/xiaomi_home/climate.py b/custom_components/xiaomi_home/climate.py index 84026b3..1df2e75 100644 --- a/custom_components/xiaomi_home/climate.py +++ b/custom_components/xiaomi_home/climate.py @@ -488,7 +488,7 @@ class AirConditioner(FeatureOnOff, FeatureTargetTemperature, # hvac modes self._attr_hvac_modes = None for prop in entity_data.props: - if prop.name == 'mode': + if prop.name == 'mode' and prop.service.name == 'air-conditioner': if not prop.value_list: _LOGGER.error('invalid mode value_list, %s', self.entity_id) continue @@ -623,7 +623,7 @@ class PtcBathHeater(FeatureTargetTemperature, FeatureTemperature, self._attr_icon = 'mdi:hvac' # hvac modes for prop in entity_data.props: - if prop.name == 'mode': + if prop.name == 'mode' and prop.service.name == 'ptc-bath-heater': if not prop.value_list: _LOGGER.error('invalid mode value_list, %s', self.entity_id) continue