image

 

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 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 IoT

Library Used

  • PubSubClient Library
  • Wire.h
  • AWS_IOT.h

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.
image
image
image
  • 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.

Serial Monitor Output

image

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.

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.
image
image
image
image

Getting Output

  • Go to test in the AWS_IoT console....
Read more »