HI I reaching out in some frustration I have the following specifications in AWS and in HASS but i cannot seem to spot the error-- can anyone throw me a bone please-
AWS
{
“intents”: [
{
“slots”: [
{
“name”: “Scene”,
“type”: “Scenes”
}
],
“intent”: “ActivateSceneIntent”
}
]
}
and action is specified as
ActivateSceneIntent activate {Scene}
Homeassistant
alexa:
intents:
ActivateSceneIntent:
action:
service: scene.turn_on
data_template:
entity_id: scene.{{ Scene | replace(" ", “_”) }}
speech:
type: plaintext
text: OK, activated
scene:
- name: Test_light_on
entities:
switch.TestLED1: on - name: Test_light_off
entities:
switch.TestLED1: off - name: Test2_on
entities:
switch.TestLED2: on - name: Test2_off
entities:
switch.TestLED2: off
Log File
2017-10-30 18:54:19 INFO (MainThread) [homeassistant.components.http] Serving /api/alexa to 52.212.132.229 (auth: True)
Oct 30 18:54:19 brettspi hass[15430]: 2017-10-30 18:54:19 WARNING (MainThread) [homeassistant.components.alexa.intent] Received unknown intent ActivateSceneIntent