From 4c5c05cbea96a02cba2126460cd1c6ac52c3e164 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Wed, 2 Oct 2024 01:11:26 +0200 Subject: [PATCH] Reword --- docs/core/entity/assist-satellite.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/entity/assist-satellite.md b/docs/core/entity/assist-satellite.md index d710c057a90..c2839e4b512 100644 --- a/docs/core/entity/assist-satellite.md +++ b/docs/core/entity/assist-satellite.md @@ -38,7 +38,7 @@ and are combined using the bitwise or (`|`) operator. | Value | Description | |------------|---------------------------------------------------| -| `ANNOUNCE` | Device supports remotely triggered announcements. Override the `async_announce` to play back the provided `media_id` from `AssistSatelliteAnnouncement`. This method should only return once the announcement has finished playing on the device. | +| `ANNOUNCE` | Device supports remotely triggered announcements. Implement the `async_announce` method to play back the provided `media_id` from `AssistSatelliteAnnouncement`. This method should only return once the announcement has finished playing on the device. | ## Methods @@ -62,7 +62,7 @@ A [websocket command](#setting-the-active-wake-words) is available for setting t ### Announcements -If the device has the `ANNOUNCE` [supported feature](#supported-features), then the `async_announce` method should be overridden to announce the provided `media_id` within `AssistSatelliteAnnouncement`. +If the device has the `ANNOUNCE` [supported feature](#supported-features), then the `async_announce` method should be implemented to announce the provided `media_id` within `AssistSatelliteAnnouncement`. The `async_announce` method should only return when the announcement is finished playing on the device. An [announce action](https://home-assistant.io/integrations/assist_satellite#action-assist_satelliteannounce) is available for automating announcements.