Creating Alexa Skills for IoT and Nodemcu - Part 3 Alexa and Lambda
Reading Nodemcu IoT Data with Alexa This is the final post in a series aimed at connecting Alexa to a Nodemcu that is collecting temperature and humidity data. Go to Part 1 - Design Go to Part 2 - AWS IoT Overview I recommend reviewing my first post in this series, so you can understand the game plan... but here's the short version. We will create and configure three separate services in AWS. An Alexa Skill for voice commands, a AWS Lambda function that will act as a middle man, and AWS IoT for storing the current state of the Nodemcu sensors. DISCLAIMER: This guide uses a work around to allow Nodemcu to communicate directly with AWS IoT. The work around uses API keys that will be written in cleartext on the Nodemcu. Proceed at your own discretion. Goals Create a AWS Lambda function that will collect the Nodemcu data that was sent to AWS IoT This will be written in Python Create an Alexa Skill to read data gathered by the Lambda function Setup ...