#Ho do I change HA saying "Done" when executing automations and change it to another sound?
1 messages · Page 1 of 1 (latest)
you can call the set_conversation_response action in your automation.
and with this i could get HA to play a chime, instead of saying something?
No, unfortunately currently you can only define a response text that way.
not easily but you could do the following I think...
set response to blank (just put a space in there) which will stop a response.
then use assist_satellite.announce to announce your chime (with no preannounce) however you will have to also use the trigger data to send to the right satellite.
a quick and dirty example of my suggestion
alias: respond with a custom chime
description: ""
triggers:
- trigger: conversation
command:
- apple
conditions: []
actions:
- set_conversation_response: " "
- action: assist_satellite.announce
metadata: {}
target:
entity_id: "{{ trigger.satellite_id }}"
data:
preannounce: false
media_id:
media_content_id: media-source://media_source/local/DUN DUN DUUUUN!!!.mp3
media_content_type: audio/mpeg
metadata:
title: DUN DUN DUUUUN!!!.mp3
thumbnail: null
media_class: music
children_media_class: null
navigateIds:
- {}
- media_content_type: app
media_content_id: media-source://media_source
mode: single
In this example the trigger "apple" runs the automation, it sets a response of nothing then announces the chime media to the sattelite that called it.
You may not need to use set_conversation_response. I remember I had to add it for something simalar at some point but it may not be needed now.
ayyy nice shit, worked right away, TY!