Introduction: Temp and Humidity Alert Using AWS and ESP32

In this tutorial, we will measure different temperature and humidity data using Temp and humidity sensor. You will also learn how to send this data to AWS.

Step 1: HARDWARE AND SOFTWARE REQUIRED

Hardware

  • ESP-32: The ESP32 makes it easy to use the Arduino IDE and the Arduino Wire Language for IoT applications. This ESp32 IoT Module combines Wi-Fi, Bluetooth, and Bluetooth BLE for a variety of diverse applications. This module comes fully-equipped with 2 CPU cores that can be controlled and powered individually, and with an adjustable clock frequency of 80 MHz to 240 MHz. This ESP32 IoT WiFi BLE Module with Integrated USB is designed to fit in all ncd.io IoT products. Monitor sensors and control relays, FETs, PWM controllers, solenoids, valves, motors and much more from anywhere in the world using a web page or a dedicated server. We manufactured our own version of the ESP32 to fit into NCD IoT devices, offering more expansion options than any other device in the world! An integrated USB port allows easy programming of the ESP32. The ESP32 IoT WiFi BLE Module is an incredible platform for IoT application development. This ESP32 IoT WiFi BLE Module can be programmed using the Arduino IDE.
  • IoT Long Range Wireless Temperature And Humidity Sensor: Industrial Long Range Wireless Temperature Humidity Sensor. Grade with a Sensor Resolution of ±1.7%RH ±0.5° C.Up to 500,000 Transmissions from 2 AA Batteries.Measures -40°C to 125°C with Batteries that Survive these Ratings.Superior 2-Mile LOS Range & 28 miles with High-Gain Antennas.Interface to Raspberry Pi, Microsoft Azure, Arduino and More

Software Used:

  • Arduino IDE
  • AWS

Library Used:

  • PubSubClient Library
  • Wire.h
  • AWS_IOT.h

Step 2: Uploading the Code to ESP32 Using Arduino IDE

  • Download and include the PubSubClient Library and Wire.h Library.
  • Download the Zip file of AWS_IoT, from the given link and after extracting, paste the library in your Arduino library folder.
  • You can get the Arduino code here.
  • You must assign your unique AWS MQTT_TOPIC, AWS_HOST, SSID (WiFi Name) and Password of the available network.
  • MQTT topic and AWS HOST can get inside Things-Interact at AWS-IoT console.
  • Compile and upload the ESP32_AWS.ino code.
  • Before uploading the code add a certificate inside the AWS_IOT folder to aws_iot_certficates.c, which is done in further steps.
  • To verify the connectivity of the device and the data sent, open the serial monitor. If no response is seen, try unplugging your ESP32 and then plugging it again. Make sure the baud rate of the Serial monitor is set to the same one specified in your code 115200.

Step 3: Serial Monitor Output

Step 4: Making the AWS Work

Create Thing and Certificate

  • THING: It is a virtual representation od your device.
  • CERTIFICATE: Authenticates the identity of a THING.
  • Open AWS-IoT
  • Click on manage -THING -Register THING.
  • Click on create a single thing.
  • Give the Thing name and type.
  • Click on next.
  • Now your certificate page will open, click on Create Certificate.
  • Download these Certificates, mainly private key, a certificate for this thing and root_ca and keep them in a separate folder.
  • Inside root_ca certificate click on Amazon root CA1-Copy it-Paste it to notepad and save it as a root_ca.txt file in your certificate folder.

Create Policy

  • It defines which operation a device or user can access.
  • Go to the AWS-IoT interface, Click on Secure-Policies.
  • Click on Create.
  • Fill all the necessary details such as policy name, Click Create.
  • Now go back to the AWS-IoT interface, Click on Secure-Certificates and attach the policy created just now to it.

Step 5: Add Private Key, Certificate and Root_CA to Code

  • Open your downloaded certificate in your text editor(Notepad++), mainly private key, root_CA and certificate of thing and edit them as the format of aws_iot_certficates.c inside AWS_IOT folder.
  • Now open your AWS_IoT folder in your Arduino library -My Document. Go to C:\Users \xyz\Documents\Arduino\libraries\AWS_IOT\src, click on aws_iot_certficates.c, open it on an editor and paste all the edited certificate their at the required place, save it.

Step 6: Getting Output

  • Go to test in the AWS_IoT console.
  • Fill your MQTT topic to Subscription topic in your test credentials.
  • Now you can view your temp and humidity data.

Step 7: Output

Step 8: Steps to Make Mail Alerts

  • You set up Amazon Simple Notification Service (Amazon SNS) for creating mail alert to receivers address for different temperature and humidity readings.
  • Go to AWS IoT console -Click on Act.
  • Don't have any rule -Click on create a rule.
  • On this page Name the rule i.e AlertTempEsp32, also provide the description(Creating mail alert of Temp and Humidity sensors data).
  • Now create Rule Query Statement(SQL statement for processing data from source).In this the statement used is
SELECT*FROM'$aws/things/Temp_Humidity_esp32/shadow/update'.<br>
  • $aws/things/Temp_Humidity_esp32/shadow/update, Go to AWS IoT Console -Manage-Thing-Click on your created Thing -Interact.
  • To choose an action Click on ADD Action.
  • Select send a message as an SNS push notification.
  • Now Configure Action selected. for SNS target-choose Create. Enter a name for the SNS topic, such as Temp_Humidity_Esp32Topic.Message Format -Raw. Create role -Temp_Humidity_Esp32TopicRole.
  • Add Action.
  • Create a rule.
  • Create Amazon SNS to send the messages through your Amazon SNS topic to your email inbox. Click on Services.
  • Search SNS. Click on SNS.
  • In Amazon SNS -Click on Subscription. Select the topic ARN.Protocol-Email -Give your email Address on which alert to be sent.
  • Now click on Create Subscription.
  • After clicking the Create Subscription. You have to confirm Subscription by clicking on the mail, that is sent to your registered mail ID.
  • Confirm Subscription link.

Step 9: ​Create Amazon SNS

  • Create Amazon SNS to send the messages through your Amazon SNS topic to your email inbox. Click on Services.
  • Search SNS. Click on SNS.
  • In Amazon SNS -Click on Subscription. Select the topic ARN.Protocol-Email -Give your email Address on which alert to be sent.
  • Now click on Create Subscription.
  • After clicking the Create Subscription. You have to confirm Subscription by clicking on the mail, that is sent to your registered mail ID.
  • Confirm Subscription link.

Step 10: OUTPUT

Step 11: