I had assistant relay working and it stopped so I uninstalled it and re-installed. Got it back up and the sandbox works just fine. When I try to use it in an automation, it won’t do anything. What is wrong with my automation?
alias: Announce I Arrived Home
description: ''
trigger:
- platform: zone
entity_id: device_tracker.life360_jacob
zone: zone.home
event: enter
condition: []
action:
- service: rest_command.assistant_relay
data:
message: Announce I've Arrived
- service: notify.mobile_app_pixel_5
data:
message: Announce I Arrived Home Has Been Triggered
mode: single
I haven’t tried the rest_command.assistant_relay
before, only rest_command.assistant_broadcast
. Does that one work?
When you look at the assistant relay UI it shows a list of recently processed commands with the ability to play the response. When you run your automation, do you see your command in that list or does it not show up at all?
For the record, there’s a lot that could be wrong but there’s really no way to tell much of anything from what you’re showing. If the command is showing up in the list then that suggest your command is getting to the add-on but not being processed correctly for some reason, you’ll probably need to take that to a github issue on the addon itself. If the command is not showing up in the list then its not getting there so you should begin by looking at logs for errors related to your automation/rest_command
. Also it would help to see the rest_command
you are using.