Skip to content

Alexa Talking to Home Assistant (The Skill)

Daniel edited this page Mar 15, 2024 · 57 revisions

Goals

  • Import the skill
  • Configure the skill
  • Check the connection

You will use an automatic import directly from GitHub. Screenshots show it step by step.

Prerequisites

You did follow along the previous steps.

  • Your Amazon developer Account is set up.
  • The HACS Alexa Media Player integration is up and running.
  • Your Home Assistant system is accessible from outside and you know the URL.
  • You decided for a language aka the local code of Alexa.
  • You created and loaded input_text.alexa_actionable_notification.

Token

Now get acquainted with token creation. You find it within your administrators profile.

Screenshot of the token management

If you want to use account linking instead, you don't need a token.

Language availability check

Actively check if there is already an interaction model for your language. The below screenshot may be outdated.

Screenshot 2023-01-01 at 14 08 53

Very important notice:


If there is an interaction model available, you will be able to import it directly. If it is not, choose en-US, aka English (US), during the creation of your skill and NOT your language. Later on, you can do the translation into your speech within the Alexa developer console.


Creating the Skill

Navigate to https://developer.amazon.com/alexa/console/ask and login with the same credentials you use for your Alexa devices.

Click the button "Create Skill" in the upper right hand corner.

Screenshot with create button

Name, Locale

Enter a skill name.

Screenshot of name input
Screenshot of German selection

The tutorial will proceed with German as an example for a language not English, not US.


Click the button "Next" in the upper right hand corner.


Experience, Model, Hosting service

In the following selections choose "Other" > "Custom" > "Alexa-hosted (Python)".

Screenshot of Python skill selection

Finally select your "Hosting region".

Screenshot of region selection

Click the button "Next" in the upper right hand corner.


Importing the Code

  1. Go to the latest release of the skill and download the zip file called AlexaActionsNoBinary.zip
  2. In the Alexa Developer Console open the Code editor of the skill
  3. Click Import Code
  4. Select the zip file you downloaded and select all files/folders

Note: There currently is a single session import limit of 100 files in most cases. You can deselect the three folders ending in .dist-info/ as these are not needed for the skill to function and then only one import should be needed.

Alternatively: Select all except isodate/ and then do a second import for just isodate/.

Troubleshooting

  • If you're skill doesn't work you might need to import with binaries so try again but with the zip file named AlexaActionsWithBinary.zip

Don't get confused by a bunch of messages. There are just a lot of asynchronous tasks going on. Provisioning of the resources may take a little longer than one minute. If it doesn't seem to finish within two minutes, though, head back to https://developer.amazon.com/alexa/console/ask/ and find your new skill already listed.

Screenshot of the skills list

Configurations

In the moment of writing this the import does not work as flawlessly and some finishing is still required. Open your new skill if it is not open already.

Configuring the Interaction Model

Invocation Name

Screenshot of skill invocation name in the checklist

Follow the menu to the "Skill Invocation Name". It has unfortunately been set to "change me" during the import. Set it to an invocation name of your choice. To help Alexa to detect it, it may be a good idea to use words of your language instead of our proposal "actionable notifications".

It is not that important, because the skill is calling us, we don't call the skill by its name. Anyway you have to change it to make it testable. During testing it may be necessary to figure out, which name is working for you and you can come back here.

Before:

before: change me

After:

after: actionable notifications

Click the "Save Model" button at the top.


The JSON Editor

Head over to Build > CUSTOM > Interaction Model > JSON Editor. Check that your invocation name has been set. This is the file that holds all the code of your interaction model and you can edit it in this central place. All parts of the graphical user interface of the interaction model are writing to it.

Screenshot of the JSON Editor

Click the "Build Model" button at the top.


Checking Success

After a little while building of the model has been finished. We now can test, that it is addressable. Open Test > Development. Within the Alexa Simulator use your language to open the skill with it's invocation name. In English you would type "open actionable nofications" if the given name is "actionable notifications".

Screenshot of skill invocation within the Alexa Simulator

It should complain about the answer of the skill. That proves that the skill is addressable. It still does not work, because the code has not been configured yet. If it doesn't relate to the skill at all, it is not addressable and you have to check your setup.

Configuring the Python Code

It's time to connect the skill to Home Assistant. Open "Code > Skill Code > lambda > lambda_function.py".

Screenshot of the lambda function file

Insert the outside URL to your Home Assistant installation into the variable HOME_ASSISTANT_URL. Replace the example URL.

In case you don't possess a valid certificate, you may want to set VERIFY_SSL to False. If you use the "Duckdns addon" with "Let's Encrypt", your certificate should be valid, though.

Create a long lived token within Home Assistant and insert it into the TOKEN variable.

Let the token variable empty, if you want to use account linking. Find account the account linking setup under Build > TOOLS > Account linking.


Click the button "Deploy" in the upper right hand corner.


Checking Success

After a little while deployment of the model has been finished. We now test, that it can speak to our Home Assistant system. Open Test > Development. Within the Alexa Simulator use your lange to open the skill with it's invocation name. In English you would type "open actionable notification" if the given name is "actionable notifications".

Screenshot of a successful connection to HA

We now should get a response speaking the content of input_text.alexa_actionable_notification, that we did setup. The Skill did successfully connect to the Home Assistant system. If it didn't you have to check your setup.


Head to the next step: Home Assistant Talking to Alexa (The Script)