Hi all I’m using the latest version of Hass.io and I’m really quite stumped.
I’m a complete newbie and I’ve gone through a lot of the self learning process over the last few weeks.
My problem now is I’m stuck here, I want to have Echo use my broadlink to turn on two machines at one time. I’ve setup a scene in Hoem Assistant to do this and I also followed this to a T:
So a few things, first the intent schema had errors so I switched it to this:
{
“intents”: [
{
“intent”: “ActivateSceneIntent”,
“slots”: [
{
“name”: “Scene”,
“type”: “Scenes”
}]
}
]
}
Now in my config.yaml
Alexa Setup
alexa:
intents:
ActivateSceneIntent:
action:
service: scene.turn_on
data_template:
entity_id: scene.{{ Scene | replace(" ", “_”) }}
speech:
type: plaintext
text: OK
When I ask home assistant to activate the scene though all it says is "this intent is not yet configured within home assistant. Also in case relevant here’s my scene:
- name: Movies
entities:
switch.onkyo_receiver: on
switch.master_tv: on