-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add services documentation enabling ui support
- Loading branch information
1 parent
9b796f6
commit 589f51d
Showing
2 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
sync_announcement: | ||
name: Sync Announcement | ||
description: Sync text-to-speech (TTS) messages across multiple media player entities | ||
fields: | ||
media_players: | ||
name: Media Players | ||
description: The media player entities to sync TTS messages to | ||
selector: | ||
entity: | ||
multiple: true | ||
filter: | ||
domain: media_player | ||
message: | ||
name: Message | ||
description: The TTS message to sync to the media players | ||
selector: | ||
text: | ||
volume: | ||
name: Volume | ||
description: The volume to set the media player to when playing the TTS message | ||
selector: | ||
number: | ||
min: 0 | ||
max: 1 | ||
step: 0.01 | ||
mode: slider | ||
unit_of_measurement: "%" | ||
language: | ||
name: Language | ||
description: The language to use when playing the TTS message (e.g en-US, en-GB, fr-FR, de-DE etc.) | ||
selector: | ||
text: | ||
default: en-US | ||
volume_reset: | ||
name: Volume Reset | ||
description: Whether to reset the volume to its previous value after playing the TTS message | ||
selector: | ||
boolean: | ||
default: false | ||
cache: | ||
name: Cache | ||
description: Whether to cache the TTS message | ||
selector: | ||
boolean: | ||
default: true |