From abd86e58e3dc8c1968ba5d6319e55beba2a84b93 Mon Sep 17 00:00:00 2001 From: LiShuzhen Date: Tue, 18 Mar 2025 17:05:21 +0800 Subject: [PATCH] fix: required temperature_unit --- custom_components/xiaomi_home/climate.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/custom_components/xiaomi_home/climate.py b/custom_components/xiaomi_home/climate.py index 1df2e75..b7cd781 100644 --- a/custom_components/xiaomi_home/climate.py +++ b/custom_components/xiaomi_home/climate.py @@ -51,6 +51,7 @@ from typing import Any, Optional from homeassistant.config_entries import ConfigEntry from homeassistant.core import HomeAssistant +from homeassistant.const import UnitOfTemperature from homeassistant.helpers.entity_platform import AddEntitiesCallback from homeassistant.components.climate import ( FAN_ON, FAN_OFF, SWING_OFF, SWING_BOTH, SWING_VERTICAL, SWING_HORIZONTAL, @@ -133,6 +134,7 @@ class FeatureTargetTemperature(MIoTServiceEntity, ClimateEntity): entity_data: MIoTEntityData) -> None: """Initialize the feature class.""" self._prop_target_temp = None + self._attr_temperature_unit = None super().__init__(miot_device=miot_device, entity_data=entity_data) # properties @@ -150,6 +152,9 @@ class FeatureTargetTemperature(MIoTServiceEntity, ClimateEntity): self._attr_supported_features |= ( ClimateEntityFeature.TARGET_TEMPERATURE) self._prop_target_temp = prop + # temperature_unit is required by the climate entity + if not self._attr_temperature_unit: + self._attr_temperature_unit = UnitOfTemperature.CELSIUS async def async_set_temperature(self, **kwargs): """Set the target temperature."""