Created
December 13, 2024 17:43
-
-
Save imnoor/0ed105230446332dccaf1ce2eddfecf6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| alias: Set Volume | |
| description: "" | |
| triggers: | |
| - trigger: conversation | |
| command: set volume to {volume_val} | |
| conditions: [] | |
| actions: | |
| - action: media_player.volume_set | |
| metadata: {} | |
| data: | |
| volume_level: "{{ (trigger.slots.volume_val | float)/10 }}" | |
| target: | |
| device_id: <deviceid> #use the web UI it would pick this up auto | |
| entity_id: media_player.<mediaplayerid> #use the web UI to select it | |
| mode: single |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment