You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invocation Name: Open Robot Welcome, Ask Robot Welcome...
Intents
WelcomeIntent welcome
WelcomeIntent say welcome
WelcomeIntent say welcome all
Answer See below...
'use strict';constAlexa=require('alexa-sdk');exports.handler=function(event,context,callback){varalexa=Alexa.handler(event,context);alexa.registerHandlers(handlers);alexa.execute();};consthandlers={'LaunchRequest': function(){this.emit('SayWelcome');},'WelcomeIntent': function(){this.emit('SayWelcome')},'SayWelcome': function(){this.emit(':tell','Hi, Welcome to Cloudy Station! I am Alexa, an intelligent personal assistant developed by Amazon Lab126, made popular by the Amazon Echo. \ I live in the cloud, the cloud is the Internet space, multiple remote computers offering different Software services. \ You can ask me any question or we can play Intel Games by saying one of the following 2 phrases: \ "Alexa!, Open Geek", and I will give you a fact about Intel.\ "Alexa!, Open Trivia", and I will start a Trivia game.\ Nice meeting you! We hope you are enjoying your visit. Thanks for coming!');}};