#Ho do I change HA saying "Done" when executing automations and change it to another sound?

1 messages · Page 1 of 1 (latest)

rich bobcat
#

Such as when I ask it to turn on my lights and it does, then says, "done". How do I change that to any sound?

exotic yarrow
rich bobcat
austere barn
#

No, unfortunately currently you can only define a response text that way.

exotic yarrow
exotic yarrow
# rich bobcat and with this i could get HA to play a chime, instead of saying something?

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.

rich bobcat