Using voice-controlled interfaces via Amazon Alexa
Control Program
Since the running Ngrok server is now blocking the current terminal, it makes sense to open a second terminal window. In it, create a text file named house.py
with the contents from Listing 2. This Python program calls the Alexa skill later on. The program provides a server that controls three devices: a TV set, a lamp, and a socket outlet.
Listing 2
house.py
For each of the three devices, the program has what is known as an intent, which controls exactly this one function. The corresponding decorators @ask.intent()
define the functions that the intent then executes as an action when called.
Say Hello!
The @ask.launch()
decorator displays a friendly greeting text. In this example, the Australian "Gooday" is used, a greeting that would be appropriate at any time of day.
In the functions, the commands necessary for controlling the GPIOs are executed. The Flask framework abstracts the complexity behind a skill very well. Further data can be found in the templates.yaml
resource file. The file must reside in the same directory as the Python program that communicates with the skill. This file contains texts that the skill will use. This makes it easier to adjust the speech output if necessary, for example to change the greeting or to enter other devices. The quite compact resource file for the example from this article is shown in Listing 3.
Listing 3
templates.yaml
§§number 01 greeting: Gooday 02 TV: TV is {{status}} 03 light: Light is {{status}} 04 socket: Socket is {{status}}
The shell python house.py
command starts the Python server. Ngrok and the Python program simply keep running after that. Of course, you cannot close any of the terminal windows afterwards. You need to make sure that Ngrok is running when the Python server enters the scene, otherwise the connection between the Echo skill and the server program cannot be established.
Setting up an Alexa Skill
For the next step when programming an Alexa skill, the Echo device you use must be activated. You first need an Amazon Web Services (AWS) account, which can be obtained free of charge on the AWS homepage. All you need is a credit card and a mobile phone connection.
You can now create a new Alexa skill via the AWS account. The easiest way to get there is via the list of current Alexa skills, which is empty for a new user account (Figure 4). There the user clicks on the Create Skill button to create a new skill.
The skill should then be given a descriptive name and a desired language. A mouse click on the Next button takes you directly to the next step of choosing the Custom model: it offers the highest degree of flexibility.
Another click on the button Create Skill closes the wizard. Now the homepage belonging to the new skill appears (Figure 5). Here you can set further parameters of the skill. The video under "How to get started" at the top of the page helps you to get started with the subtleties of skill creation.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
An All-Snap Version of Ubuntu is In The Works
Along with the standard deb version of the open-source operating system, Canonical will release an-all snap version.
-
Mageia 9 Beta 2 Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.