From 36d5a3e4def910c121fa325a2933df84ae0ac5c8 Mon Sep 17 00:00:00 2001 From: tedwang Date: Fri, 3 Jan 2025 10:54:41 +0800 Subject: [PATCH 1/2] docs: fix table header misplacement fix table header misplacement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 872808a..642c499 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ In MIoT-Spec-V2 protocol, a product is defined as a device. A device contains se - Property -| format | access | value-list | value-range | Entity in Home Assistant | +| access | format | value-list | value-range | Entity in Home Assistant | | ------------ | --------------------- | ------------ | ----------- | ------------------------ | | writable | string | - | - | Text | | writable | bool | - | - | Switch | From 13e6863678f9fcbd908f86f86b504e71909870bc Mon Sep 17 00:00:00 2001 From: tedwang Date: Thu, 23 Jan 2025 10:09:15 +0800 Subject: [PATCH 2/2] fix: Fix the HA warning in the logs related to vacuum state setting Adapt to new vacuum state property, set the activity property instead of directly setting the state property. --- .../xiaomi_home/miot/miot_spec.py | 6 +++ custom_components/xiaomi_home/vacuum.py | 44 +++++++++++++++++-- 2 files changed, 47 insertions(+), 3 deletions(-) diff --git a/custom_components/xiaomi_home/miot/miot_spec.py b/custom_components/xiaomi_home/miot/miot_spec.py index 67fde7b..8bb70f9 100644 --- a/custom_components/xiaomi_home/miot/miot_spec.py +++ b/custom_components/xiaomi_home/miot/miot_spec.py @@ -213,6 +213,12 @@ class MIoTSpecValueList: return item.description return None + def get_name_by_value(self, value: Any) -> Optional[str]: + for item in self.items: + if item.value == value: + return item.name + return None + def dump(self) -> list: return [item.dump() for item in self.items] diff --git a/custom_components/xiaomi_home/vacuum.py b/custom_components/xiaomi_home/vacuum.py index 232e676..b2f6015 100644 --- a/custom_components/xiaomi_home/vacuum.py +++ b/custom_components/xiaomi_home/vacuum.py @@ -54,7 +54,8 @@ from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddEntitiesCallback from homeassistant.components.vacuum import ( StateVacuumEntity, - VacuumEntityFeature + VacuumEntityFeature, + VacuumActivity ) from .miot.const import DOMAIN @@ -191,10 +192,47 @@ class Vacuum(MIoTServiceEntity, StateVacuumEntity): @property def state(self) -> Optional[str]: - """Return the current state of the vacuum cleaner.""" + """Return the current state of the vacuum cleaner. + + To fix the HA warning below: + Detected that custom integration 'xiaomi_home' is setting state + directly.Entity XXX()should implement the 'activity' property and return + its state using the VacuumActivity enum.This will stop working in + Home Assistant 2026.1. + + Refer to + https://developers.home-assistant.io/blog/2024/12/08/new-vacuum-state-property + + There are only 6 states in VacuumActivity enum. To be compatible with + more constants, try get matching VacuumActivity enum first, return state + string as before if there is no match. In Home Assistant 2026.1, every + state should map to a VacuumActivity enum. + """ + if (activity := self.activity) is not None: + return activity return self.get_map_value( map_=self._status_map, - key=self.get_prop_value(prop=self._prop_status)) + key=self.get_prop_value(prop=self._prop_status) + ) + + @property + def activity(self) -> VacuumActivity | None: + """Return the current vacuum activity.""" + state_trans_map = { + 'Sleep': VacuumActivity.IDLE, + 'Idle': VacuumActivity.IDLE, + 'Paused': VacuumActivity.PAUSED, + 'Go Charging': VacuumActivity.RETURNING, + 'Charging': VacuumActivity.DOCKED, + 'Sweeping': VacuumActivity.CLEANING, + 'Sweeping and Mopping': VacuumActivity.CLEANING, + 'Mopping': VacuumActivity.CLEANING, + 'Error': VacuumActivity.ERROR, + } + prop_value = self.get_prop_value(prop=self._prop_status) + state_name = self._prop_status.value_list.get_name_by_value(prop_value) + return state_trans_map.get(state_name) @property def battery_level(self) -> Optional[int]: