(This Project is incomplete as we couldn't solve our bot's control issues and couldn't make our bot's servo and DC-motors move in a sync.)
So, what we have coded so far on integrating Amazon Echo and fetching the decoded direction from AWS on our local system is uploaded here.
- Command.py is python file which queries DynamoDB on AWS and print changing direction.
- NewWorkingLambdaFunc is the lambda function code which needs to be there on AWS (not to be run on local system)
- "Intent Schema" on developer.amazon.com:
{
"intents": [
{
"slots": [
{
"name": "Command",
"type": "LIST_OF_COMMANDS"
}
],
"intent": "BotMovementIsIntent"
},
{
"intent": "WhatsNewBotDirectionIsIntent"
},
{
"intent": "AMAZON.HelpIntent"
}
]
}
