Hi guys,
Background:
Using Home Assistant Docker Install on Synology.
Objective:
Use Alexa to voice control the devices I add on HA.
After this step, will be moving on to scripts and automations I suppose.
Problem:
I’ve successfully followed the YouTube video which is essentially going through the steps in this doc right?
Amazon Alexa Smart Home Skill - Home Assistant.
- So i’m at the point where I successfully did a lambda test (and pulled in all the devices that HA is showing)
- Connected the custom skill inside of the Alexa phone app (so all the account linking, https stuff is done successfully right?)
- scan devices but at this point, nothing shows up.
According to the video, that’s all I need to do but looking at the documentation and the example HA configuration.yaml, do I actually need to write the devices in the file? If I need to, I did a test code like so:
alexa:
smart_home:
locale: en-US
endpoint: https://api.amazonalexa.com/v3/events
client_id: https://pitangui.amazon.com/
client_secret:
filter:
include_entities:
- light.dining_lights
entity_config:
light.dining_lights:
name: "Dining Lights"
description: "The light in the kitchen"
And then I tried reconnecting again on the Alexa App. Still nothing. What am I missing? Do I need to manually write each entity or do I actually not need to? Thanks.
Also, the included_entities line. This input takes the entity ID and not the name…right? Just to clarify.
Thanks!