Integrating ESP32 with LoRaWAN and HiveMQ MQTT Broker for Advanced IoT
In the dynamic sphere of the Internet of Things (IoT), the integration of various technologies is key to unlocking new and advanced capabilities. At the heart of such integration is ESP32, a powerful microcontroller renowned for its versatility in IoT projects. In this comprehensive guide, we venture into developing an ESP32 program that not only communicates via LoRaWAN – a protocol celebrated for its long-range and low-power benefits – but also interfaces seamlessly with HiveMQ MQTT Broker, an enterprise-grade MQTT platform designed to facilitate efficient and reliable message exchange.
This tutorial serves as a detailed roadmap for developers looking to explore the synergy between ESP32, LoRaWAN, and MQTT technologies. We will guide you through each step of the development process — from the initial setup and configuration of your ESP32 with LoRaWAN to the intricacies of connecting, exchanging, and normalizing data with HiveMQ Platform. You will gain a deep understanding of how to harness these technologies together, creating IoT solutions that are not only innovative but also robust and scalable. So, gear up with your ESP32 module, and let's dive into this exciting world of interconnected IoT technologies!
To follow this hands-on tutorial, we assume that you have already read our previous article on the integration of ChripStack LoRaWAN Network Server and HiveMQ Platform and that you have your environment up and running.
Connecting ESP32 to LoRaWAN and MQTT
In this hands-on lab, we walk you through the below steps:
Create the Device profile and declare a new Device in the Application “Environment sensors” already created during the first hands-on guide.
Create a simple firmware for our ESP32 chips to read the temperature and humidity value from the DHT11 sensor and send the values via LoRaWAN to HiveMQ Platform.
Create a HiveMQ Data Hub transformation script on HiveMQ Platform to simplify and normalize the data received in the LoRaWAN Application.
Use the HiveMQ Enterprise Extension for PostgreSQL to record sensor data.
Prerequisites
To create the firmware for our ESP32 chip, we use the Arduino IDE. If you don’t have it already installed, follow the instructions for your operating system:
We will need some extra configuration on the Arduino IDE to be able to work with the ESP32 board and the sensors.
To add the ESP32 boards support on the IDE, we navigate to Arduino IDE > Preferences (Windows File > Preferences), and fill in "Additional Boards Manager URLs" with this URL as shown below:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
Then, navigate to Tools > Board > Boards Manager, search for esp32, select the latest version of esp32, and install it.
We will also need the DHT11 library that works with our sensor. You can import the SeeedStudio DHT11 library by adding this package in Arduino IDE.
To import the custom library, go to
Sketch > Include Library > Add .ZIP Library...
You will be prompted to select the library you want to add. Navigate to the .zip file’s location and open it.
Hardware
There are many manufacturers supplying boards with ESP32 chips. Here we're going to take a look at a solution provided by Seeed Studio, which produces boards with Grove connectors, making the development of embedded solutions much easier.
We will use the following components:
Grove-Wio-E5 Wireless Module (868 Mhz for EU)
For reference, the shield with XIAO ESP32 offers the below connectivity.
Connect Hardware
We need to wire the components to the shield as follows:
XIAO ESP32 on the ESP32 position on the shield
Wio-E5 on UART connector (A7, D7)
DHT11 on A0 connector
Once wired, connect the XIAO ESP32 to your computer via USB and configure it in the Arduino IDE. On the Arduino IDE, you can select the port directly. Search for XIAO_ESP32S3 in the development board on the left. Select XIAO_ESP32S3.
Note: If you are not sure that the connection is working properly, you can test it by deploying the blinking LED test code from the Arduino samples.
ChirpStack Configuration
Before diving into the code, we will configure our ChirpStack Network Server to allow our chip to send data by:
Creating a new device profile
Adding our device to the existing application for environmental sensors
Create a Device Profile
To create a device profile, go to Tenant > Device profiles.
Create a new profile by entering the name and the region configuration.
On the Join tab, check that “Device supports OTAA” is activated.
Then click “Submit” to create the device profile.
Declare a New Device
In the ChirpStack Network Server Web UI, go to the Application previously created (in the first hands-on post) and add a new Device based on the device profile we’ve just created.
Note: To find the Device EUI of your LoRaWAN chip, look at the sticker under the Wio-E5.
We submit the form to create the device. Then, we need to generate an OTAA key to finalize the configuration. To do so, go to the device property page and the tab OTAA keys. Use the round arrow to generate an MSB Application Key and copy it for later. Click on “Submit” to save it.
Save the key for later.
Arduino Development
ESP32 chips support the execution of several types of code and firmware. These include Arduino code execution. It has the advantage of being easy to use and has a very large community. We will use it to create our firmware.
Open the Arduino IDE and create a new sketch to add to the following code blocks.
Import the required libraries:
Define DHT PIN and TYPE and initialize the instance:
We will then add a code block that will handle some variables and the serial communication via UART to our Wio-E5 module to enable LoRaWAN communications:
We now add the Setup block to initialize the necessary components. In this block, you will need to replace <DEVICE EUI> and <ADD THE OTAA KEY> by your values:
We finally add the Loop block:
Compile the firmware and deploy it on your ESP32.
Once executed, the serial monitor should return the following:
You should be able to see the frames in the ChirpStack.
You should also be able to see the payload of the application by connecting to HiveMQ MQTT Broker.
Data Normalization (Data Transformation)
Now that our ESP32 device is sending the temperature and humidity regularly, we need to use HiveMQ Data Hub transformation to extract the values from our Application payload as shown below:
What we need to extract is the field "data":"VDoxOS1IOjQ2" that is sent as base64 string. What we want to get after transformation is a payload as shown below:
We will capture all messages on the following topic:
HiveMQ Data Hub Prerequisites
To configure the HiveMQ Data Hub policy, you need:
The HiveMQ API enabled on the broker
The HiveMQ MQTT CLI (latest version)
If you followed the first article to set up your broker, you will need to update the config file for the broker to reflect the following sample:
This will allow you to interact with the API (http://broker-ip:8888) without authentication and see the Policies in the Control Panel (http://broker-ip:8080) with the default credentials (Username: admin and password: hivemq).
Remember that this setup is ok for a lab but not for production, so we encourage customers to use our Enterprise Security Extension to protect all services of HiveMQ Broker including HiveMQ Control Center and API.
After updating the configuration, restart the broker to take it into account.
Validation Schema
To be sure that we are receiving a JSON object, we will create a very simple policy that will just check that the payload is actually a JSON object. Create a file called “pre-schema.json” and add the following content:
We also need a schema to validate the object that will be generated after our transformation. Create a new file called “post-schema.json” and add the following content:
Then using HiveMQ MQTT CLI, upload the schemas to the broker:
Note: If you are executing the command remotely, don’t forget to specify ‘—url https://your-broker-address:8888’
Transformation Script
The next step after being sure that the payload will be in JSON format is to proceed with the transformation, which will consist in extracting the base64 data coming from the sensor and converting it to a simple JSON payload. Create a file called “script.js” and add the following content:
In a nutshell, the transform function is called by the Data Hub transformation to manipulate the payload, and the decodeBase64 function is called from the transform function to decode the data in the original payload. We then build the new payload respecting the Publish Object format.
Upload the script to the broker using HiveMQ MQTT CLI:
Note: If you are executing the command remotely, don’t forget to specify ‘—url https://your-broker-address:8888’
Policy
Now that we have both the validation schema and the transformation script, we can create the policy that will handle the messages. Create a file called “policy.json” and add the following content:
Upload the policy to the broker using HiveMQ MQTT CLI:
Note: If you are executing the command remotely, don’t forget to specify ‘—url https://your-broker-address:8888’
If your device is already connected and sending data to the broker, you should instantly see the new payloads as shown below:
The new structure is now:
Database Injection
An additional step that you can do if you have a database available (Postgres in our case, but you can do the same with MySQL) is to save the history of the values in a database. In our lab, we will create a database and its table with the following script:
Configure the HiveMQ Enterprise Extension for PostgreSQL
On the broker, we need to update the configuration file for HiveMQ Enterprise Extension for PostgreSQL in order to collect our MQTT messages and save them into the database. Stop the broker and create the config.xml file with the below content in the extension directory (/opt/hivemq/extensions/hivemq-postgresql-extension/conf):
Note: Don’t forget to remove the DISABLE (/opt/hivemq/extensions/hivemq-postgresql-extension/DISABLE) file in the extension folder.
Start the broker and monitor the logs. If you don’t see any error on startup regarding the PostgreSQL extension (such as a connection issue to the PostgreSQL instance), you should shortly see data from your ESP32 device being inserted in the database.
Wrap Up
In this guide, we’ve not only successfully created a simple firmware based on Arduino for our ESP32 board to send sensor values via our LoRaWAN private network, but we’ve also used the powerful data transformation feature (that comes with Data Hub on HiveMQ Platform) and the Enterprise Extension for PostgreSQL database to historicize our sensor data. This allows scenarios where the data is prepared before being sent to backend services and/or saved into databases. If you need more examples of concrete implementations of Data Hub transformations, see the GitHub repository shared by our engineering team with some samples.
As we conclude, remember that the world of IoT is ever-evolving. Stay curious, keep experimenting, and don't hesitate to push the boundaries of what your IoT network can achieve. ESP32 and STM32 chips can be used in all kinds of scenarios, from environmental monitoring to end-user products.
Resources
Code and files from this article are available on my GitHub repository: ESP32-DATAHUB.
If you want to learn more about SeeedStudio XIAO products, here’s their official wiki.
Anthony Olazabal
Anthony is part of the Solutions Engineering team at HiveMQ. He is a technology enthusiast with many years of experience working in infrastructures and development around Azure cloud architectures. His expertise extends to development, cloud technologies, and a keen interest in IaaS, PaaS, and SaaS services with a keen interest in writing about MQTT and IoT.