AWS IoT core and MQTT services: introduction and prerequisites – 1

Spread the love

It’s time to connect our device to AWS IoT core via MQTT services. In this tutorial, we’ll connect an esp32, an esp8266, and an Arduino MKT 1010 WiFi to these services.

Amazon AWS IoT Core MQTT prerequisite and introduction
Amazon AWS IoT Core MQTT prerequisite and introduction

The service that we will use is MQTT, a messaging protocol created for IoT devices.

MQTT is an OASIS standard messaging protocol for the Internet of Things (IoT). It is designed as an extremely lightweight publish/subscribe messaging transport that is ideal for connecting remote devices with a small code footprint and minimal network bandwidth. MQTT today is used in a wide variety of industries, such as automotive, manufacturing, telecommunications, oil and gas, etc.

mqtt.org

We have already learned how to create a basic Amazon Alexa SmartHome skill structure, but we hadn’t attached devices. Now we will develop the sketch and relative AWS layer to manage external devices.

We are now at this point on the schema:

Alexa Smart Home IoT Core MQTT position
Alexa Smart Home IoT Core MQTT position

Prerequisites

First, you must create the accounts.

Here an esp8266 AliExpress WeMos D1 mini - AliExpress NodeMCU V2 V2.1 V3 - AliExpress esp01

Code and resources

If you had followed the previous series of articles about “Alexa SmartHome Skill“, you have already done these steps, so go ahead.

First, create a folder; for me, I create

alexa-skill-manage-relay

Get the setup-template.txt file from

https://github.com/xreef/alexa-skill-manage-relay-nodejs

and rename in setup.txt.

The file should contain:

[Login with Amazon Client ID]
amzn1.application-oa2-client.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

[Login with Amazon Client Secret]
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

[Alexa Skill Application ID]
amzn1.ask.skill.XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX

[AWS Lambda ARN]
arn:aws:lambda:us-east-1:XXXXXXXXXXXX:function:skill-sample-language-smarthome-switch

[Redirect URLs]
https://pitangui.amazon.com/api/skill/link/XXXXXXXXXXXXXX
https://layla.amazon.com/api/skill/link/XXXXXXXXXXXXXX
https://alexa.amazon.co.jp/api/skill/link/XXXXXXXXXXXXXX

[DynamoDB table]
XXXXXXX

[Device end point]
XXXXXXXX

Install Optional Tools

These tools are optional as they are helpful but not required.

Git

Git 2.0 or greater is required only if you want to clone the source code locally. At a command line, you can verify if git is installed by running the command:

git --version

If it is not correctly installed or is not a version greater than 2.0, visits https://git-scm.com/downloads to download and install a version for your platform.

Get the Source Code via Git

If you have git installed on your workstation, you can use the following instructions to pull the source code into your working directory.

  1. From the command-line, navigate into the working directory on your desktop: alexa-skill-manage-relay-nodejs
  2. Run the following command to pull the source code to a working directory:
git clone https://github.com/xreef/alexa-skill-manage-relay-nodejs.git

Get the Source Code via Download

If you do not have git installed, download and unzip the zipped contents of the sample from 

https://github.com/xreef/alexa-skill-manage-relay-nodejs/archive/refs/heads/main.zip

into your desktop working directory: alexa-skill-manage-relay-nodejs.

Thanks

  1. AWS IoT core and MQTT services: introduction and prerequisite
  2. AWS IoT core and MQTT services: creating AWS thing with certificate and policy
  3. AWS IoT core and MQTT services: connect esp8266 devices
  4. AWS IoT core and MQTT services: connect esp32 devices
  5. AWS IoT core and MQTT services: connect Arduino SAMD (WiFiNINA) devices
  6. AWS IoT core and MQTT services: test with console and MQTT.fx

Spread the love

Leave a Reply

Your email address will not be published. Required fields are marked *