Skip to content

sjovanelly/alexa-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

#iMeet / Amazon Alexa integration POC

Concepts

This POC uses the Alexa Skills Kit and Amazon Lambdas to create a new Alexa Skill to integrate to your iMeet room.

Setup

To run this skill you need to do two things. The first is to deploy the example code in lambda, and the second is to configure the Alexa skill to use Lambda.

AWS Lambda Setup

  1. Go to the AWS Console and click on the Lambda link. Note: ensure you are in us-east or you won't be able to use Alexa with Lambda.
  2. Click on the Create a Lambda Function or Get Started Now button.
  3. Skip the blueprint
  4. Name the Lambda Function "iMeetFunctions".
  5. Select the runtime as Node.js
  6. Go to the src directory, select all files and then create a zip file, make sure the zip file does not contain the src directory itself, otherwise Lambda function will not work.
  7. Select Code entry type as "Upload a .ZIP file" and then upload the .zip file to the Lambda
  8. Keep the Handler as index.handler (this refers to the main js file in the zip).
  9. Create a basic execution role and click create.
  10. Leave the Advanced settings as the defaults.
  11. Click "Next" and review the settings then click "Create Function"
  12. Click the "Event Sources" tab and select "Add event source"
  13. Set the Event Source type as Alexa Skills kit and Enable it now. Click Submit.
  14. Copy the ARN from the top right to be used later in the Alexa Skill Setup

Alexa Skill Setup

  1. Go to the Alexa Console and click Add a New Skill.
  2. Set "PGi iMeet" for the skill name and "history buff" as the invocation name, this is what is used to activate your skill. For example you would say: "Alexa, Ask History Buff what happened on August thirtieth."
  3. Select the Lambda ARN for the skill Endpoint and paste the ARN copied from above. Click Next.
  4. Copy the Intent Schema from the included IntentSchema.json.
  5. Copy the Sample Utterances from the included SampleUtterances.txt. Click Next.
  6. [optional] go back to the skill Information tab and copy the appId. Paste the appId into the index.js file for the variable APP_ID, then update the lambda source zip file with this change and upload to lambda again, this step makes sure the lambda function only serves request from authorized source.
  7. You are now able to start testing your sample skill! You should be able to go to the Echo webpage and see your skill enabled.
  8. In order to test it, try to say some of the Sample Utterances from the Examples section below.
  9. Your skill is now saved and once you are finished testing you can continue to publish your skill.

Change credentials

For now, the credentials are hard-coded. To change them to your iMeet creds, go to line 86 in index.js to change.

User Interactions

User: "Alexa, ask iMeet who I am" Alexa: "You are Jovi Jovanelly. Thank you for using iMeet."

User: "Alexa, ask iMeet how many people are in my room" Alexa: "Your room is empty" // if your room is empty

User: "Alexa, ask iMeet how many people are in my room" Alexa: "There are 3 people in your room." // if you have people in your room

User: "Alexa, ask iMeet who is in my room" Alexa: "Therese Mushock, Leif Andersen, and, of course, you are in your room right now." // if you have people in your room

User: "Alexa, tell iMeet that Im running late" Alexa: "The message was sent to your room." // a message is shown to the people in your room.# alexa-test

About

Amazon Alexa integration with old project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published