- ThingsBoard setup
- Create the MQTT integration
- Check and test the data converter
- Device setup
- Check the device
- Create a Dashboard
- More references and guides
- Next steps
Digicom devices are designed to interoperate with ThingsBoard IoT platforms by providing the necessary settings and functionalities to be easily integrated, allowing you to create dashboards where data and telemetry can be displayed and monitored.
This tutorial is intended to be an integration guide focused on setting up a professional monitoring application, covering the basic aspects of your Digicom device and the corresponding ThingsBoard configuration using the MQTT protocol integration
The described scenario includes your Digicom device being connected to an MQTT broker and ThingsBoard being subscribed to those data streams through an MQTT integration, thus converting the payloads into its message format through a specific Data Converter.
Before you start: To make this tutorial work, you need:
- A Digicom device like DRN500 or DRN3000 Multifunction Routers with firmware release 1.10 or newer
- A ThingsBoard instance on Cloud or Premise with a publicly reachable address
ThingsBoard setup
First of all, activate your ThingsBoard account, whether it is on Cloud or Premise. You can find detailed instructions on how to install and set up your personal ThingsBoard instance in the More References and Guides chapter.
Log in and get ready for your configuration!
Create the MQTT integration
We will start by defining the data ingress section. MQTT Integration allows to connect to external MQTT brokers, subscribe to data streams from those brokers and convert any type of payload from your devices to ThingsBoard message format. Its typical use is whenever your devices are already connected to external MQTT broker or any other IoT platform or connectivity provider with MQTT based back-end.
Go to the “Integrations center” section -> “Integrations” page and click “plus” button to create new integration. Select type “MQTT”. Click “Next”;
At the next step, give a name to the Uplink data converter, select “TBEL”, delete the whole content of the function Decoder.
Paste the following TBEL code inside the function Decoder. Then, click “Next”.
Click “Skip” in the Downlink data converter tab.
Fill in the “Connection” tab:
- Set the external MQTT broker “Host” address and “Port”;
- Select “Basic” for Credentials type, enter “Username” and “Password” (to be used for authenticating on the External MQTT broker);
- Set the following Topic:
1
digicom/+/data/modbus
- Select QoS 1;
Click on “Check connection” if you want to test it first.
Click “Add” to finish the integration setup.
If the connection is successful, the status of your MQTT integration will be “Active”. Otherwise, it will remain “Inactive” until the first connection with the external broker takes place.
If the connection does not succeed, double-check the address, port, and credentials later.
Check and test the data converter
The Data converter is responsible for elaborating and transforming the data structure coming from the device into the telemetry and attribute data format suitable for ThingsBoard.
From here, we can simulate and test the conversion process even before receiving real data from the device.
Go to the “Data converters” page of the “Integration center” section. Click on the “Modbus Data” conveter, and then enter edit mode.
Once edit mode is active, the “Test decoder function” button will become available. Click on it to access the Test environment.
Copy the JSON packet code from the below table into the “Payload content” tab, then click on “Test” button, and check the “Output” tab.
If everything has been correctly set up until now, you will see the result of the transformation process:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"deviceName": "50012345",
"deviceType": "Router500",
"attributes": {
"model": "8D5913",
"integrationName": "MQTT integration"
},
"telemetry": [{
"ts": 1741869373000,
"values": {
"voltage": "228.800000"
}
}, {
"ts": 1741869374000,
"values": {
"current": "0.868000"
}
}, {
"ts": 17418693735000,
"values": {
"hertz": "50"
}
}, {
"ts": 1741869376000,
"values": {
"power": "1.491000"
}
}]
}
Fine! The data ingress phase is done and working. Click on “Cancel” and then on the “X” icon to exit edit mode.
Let’s switch to the device setup.
Device setup
Log in into your device. Enter Username and Password. Then, click “Login” button.
This guide will use the Modbus functionalities to read from an Electric Energy Meter and transmit that data to ThingsBoard through the MQTT protocol.
We will concentrate on the Modbus and MQTT setup sections, assuming that the device is already correctly configured for Internet access and that the Modbus physical connections are correctly carried out.
Select “Modbus” – “COM Configuration” from the drop-down menu.
Set the Modbus serial interface enabled, set type, speed and data format as for the Energy Meter operating parameters.
Click on “Save” button.
Go to the “Modbus” –> “Modbus Master” from the drop-down menu.
Click on “Add” button.
Set the Modbus Master profile to enabled, set Name, ID, Connection type, COM type and settings, rates and register formats. Set the Data Destination to MQTT, then click “Save” button.
Now we will define 4 sample sets of data values (Voltage, Current, Frequency and kVA) be read from the Energy Meter and sent to ThingsBoard as timeseries, for later representation and dashboarding.
Click on “Requests” button.
We fill in the needed parameters for the Voltage (Volts) values and click “Save” button.
Repeat the previous steps for Current (Ampere), Frequency (Hertz) and Power (kVA) by clicking on “Add” button.
The final result will look as below.
If everything is correct the Value column will show coherent measurement data being updated at the given Scan rate.
By clicking on “Test” an immediate data value read can be issued.
Select Modbus – MQTT Configuration from the drop-down menu.
Fill in the MQTT destination parameters for our external Broker, like Server Address and Port Number, Username and Password (in this example our MQTT Broker is set for using MQTT Basic Authentication).
Set the Publishing topic to which the device will send the data to. By default, the device does publish to the following topic structure for its Modbus data:
1
digicom/<device SN>/data/modbus
Click on “Save” button.
In order to start the newly configured processes it is needed to restart the device.
Select Device – “Reboot” from the drop-down menu.
Click on “Reboot” and confirm.
Wait for the device to become operational again, then go back to ThingsBoard account and check the device appearing in the “Devices” page.
Check the device
Go to the “Devices” page of the “Entities” section from menu bar on the left. A new device should appear as soon as it has published the first data to the external MQTT broker on which ThingsBoard is connected too.
Check data telemetries and attributes.
Click on the device row (not on the checkbox) and go to the “Last telemetry” tab.
This panel shows the latest values of the measurements the Data converter has extracted from the data stream.
Navigate to the “Attributes” tab. This panel shows the latest Client and Server attributes the Data converter has extracted from the data stream.
So, with those data in the system we can now proceed and create a simple Dashboard.
Create a Dashboard
ThingsBoard offers a powerful feature – the ability to create and customize interactive visualizations, also known as Dashboards. These dashboards are instruments for monitoring and managing your data and devices efficiently.
Navigate to the “Dashboards” page through the main menu on the left of the screen. Click the “+” sign in the upper right corner of the screen, and select “Create new dashboard” from the drop-down menu. In the opened dialog, it is necessary to enter a dashboard title, description is optional. Click “Add”.
After creating the dashboard, it will open automatically, and you can immediately start adding widgets to it.
Click the “Add widget” button at the top of the screen or click the large “Add new widget” icon in the center of the screen (if this is your first widget on this dashboard).
Find the “Analogue gauges” widget bundle and click on it.
Select the “Radial gauge” widget.
The “Add Widget” window will appear. Specify the device “50012345” as the data source in the “Device” field.
Specify the telemetry key “power” as Data key.
Scroll down and set other details as you prefer, like the title, units, minimum and maximum ranges for the gauge scale.
If you want to customize further, go to the “Advanced” and go deeper in the widget appearance and styling.
Click on “Add”.
You have added a widget that displays the current power readings.
Similarly, add additional widgets for the three other available telemetry values (data keys) and position them appropriately on the dashboard.
Once you have completed the configuration, click “Save” to save the dashboard.
More references and guides
You may find more online documentation and guides on how to work with ThingsBoard, create customers, users, and assets, and make your dashboards even more powerful and professional!
Next steps
-
Getting started guides - These guides provide quick overview of main ThingsBoard features. Designed to be completed in 15-30 minutes.
-
Data visualization - These guides contain instructions on how to configure complex ThingsBoard dashboards.
-
Data processing & actions - Learn how to use ThingsBoard Rule Engine.
-
IoT Data analytics - Learn how to use rule engine to perform basic analytics tasks.
-
Hardware samples - Learn how to connect various hardware platforms to ThingsBoard.
-
Advanced features - Learn about advanced ThingsBoard features.
-
Contribution and Development - Learn about contribution and development in ThingsBoard.