Start United States USA — software Developing Skills for Amazon Echo Show

Developing Skills for Amazon Echo Show

288
0
TEILEN

The recently introduced Amazon Echo Show provides developers new opportunities to develop skills that integrate voice control, visual feedback, and tactile input. David Isbitski, Amazon chief evangelist for Alexa, summarized the key points of developing Alexa skills for the Echo Show.
The recently introduced Amazon Echo Show provides developers new opportunities to develop skills that integrate voice control, visual feedback, and tactile input. David Isbitski, Amazon chief evangelist for Alexa, summarized the key points of developing Alexa skills for the Echo Show.
Custom skills for Echo Show may use four types of interactions:
The first step to support multimodal interfaces is enabling the Render Templates option for you skill, which can be done in the Skill Information page. Two templates are available:
To properly support all available Alexa devices in your skill implementation, you should check for a device’s supported interfaces. This can be done by checking event.context. System.device.supportedInterfaces coming with the Alexa request. For example, this is how an Alexa request looks like when the Display, AudioPlayer, and VideoApp interfaces are available:
Once you know the device you are running on supports a display, you can display content by including it in the Display. RenderTemplate directive of your response. For example, you can display a text and an image using a body template named BodyTemplate1 by including the following:
Another new feature provided by Echo Show is video Playback, which can be enabled with the corresponding option in the Skill Information page. To start video playback, you include in your response the VideoApp. Launch directive, as shown below:
Finally, touch input can be handled by means of a number of predefined intents, such as, AMAZON. ScrollUpIntent, AMAZON. ScrollLeftIntent, etc., which will trigger the execution of your custom code associated to them.
For a list of all possibilities offered by Echo Show to developers, make sure to check Isbitski’s post.

Continue reading...