From 5436c0479959bf288e745a43eaae7010c5fbd215 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Sun, 22 Sep 2024 22:55:58 +0900 Subject: [PATCH] Summary: Document LawnMowerActivity.RETURNING support Requires HA 2024.9 Issue #2239 --- custom_components/tuya_local/devices/README.md | 2 +- hacs.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/tuya_local/devices/README.md b/custom_components/tuya_local/devices/README.md index a93c43fb5d..46845f1c3e 100644 --- a/custom_components/tuya_local/devices/README.md +++ b/custom_components/tuya_local/devices/README.md @@ -625,7 +625,7 @@ Humidifer can also cover dehumidifiers (use class to specify which). - **current_humidity** (optional, number): a dp to report the current humidity measured by the device ### `lawn_mower` -- **activity** (required, string): a dp to report the current activity of the mower. Valid activities are `mowing`, `paused`, `docked`, `error` (from LawnMowerActivities in https://github.com/home-assistant/core/blob/dev/homeassistant/components/lawn_mower/const.py). Any additional activities should be mapped to one of those, and exposed through an extra attribute or sensor entity that shows all the statuses that the mower is reporting. +- **activity** (required, string): a dp to report the current activity of the mower. Valid activities are `mowing`, `paused`, `docked`, `error`, `returning` (from LawnMowerActivities in https://github.com/home-assistant/core/blob/dev/homeassistant/components/lawn_mower/const.py). Any additional activities should be mapped to one of those, and exposed through an extra attribute or sensor entity that shows all the statuses that the mower is reporting. - **command** (required, string): a dp to send commands to the mower. Recognised commands are `start_mowing`, `pause` and `dock`. Any additional commands should be implemented via a `button` or `select` entity. diff --git a/hacs.json b/hacs.json index 3de559c9b3..e1b26e3bed 100644 --- a/hacs.json +++ b/hacs.json @@ -1,5 +1,5 @@ { "name": "Tuya Local", "render_readme": true, - "homeassistant": "2024.8.0" + "homeassistant": "2024.9.0" }