Stand with Ukraine flag
Try it now Pricing
Community Edition
Energy Meter monitoring with ThingsBoard IoT Platform
Getting Started Documentation Devices Library Guides Installation Architecture API FAQ
On this page

Energy Meter monitoring with ThingsBoard IoT Platform

image

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

image

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”;

image


At the next step, give a name to the Uplink data converter, select “TBEL”, delete the whole content of the function Decoder.

Doc info icon

Notes: ThingsBoard Expression Language (TBEL) is an optimized and super-efficient alternative to the original programming language for the UDF, which is JavaScript. TBEL is preferred although JavaScript is and will remain supported.

Paste the following TBEL code inside the function Decoder. Then, click “Next”.

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
30
31
32
33
34
35
36
37
38
39
// *** Digicom Data Converter ***

var variableNamesMap = {
  "Volts": "voltage",
  "Ampere": "current",
  "Frequency": "hertz",
  "kVA": "power"
};

var payload = decodeToJson(payload);
if (payload.modbus == null) {
  return;}
  
var telemetry = [];
var telemetries = payload.modbus.data[0].samples;
foreach(sample: telemetries) {
  var values = {};
  var varName = variableNamesMap[sample.reg];
  if (varName != null) {
    values[varName] = sample.value;
    telemetry.push({
      ts: Long.parseLong(sample
        .timestamp) * 1000,
      values: values
    });
  }}

var result = {
  deviceName: payload.serialnum,
  deviceType: payload.type,
  attributes: {
    model: payload.model,
    integrationName: metadata['integrationName'],
  },
  telemetry: telemetry};
        
/** Helper functions 'decodeToString' and 'decodeToJson' are already built-in **/

return result;

image


Click “Skip” in the Downlink data converter tab.

image


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.

image


Click “Add” to finish the integration setup.

image


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.

image

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.

image


Once edit mode is active, the “Test decoder function” button will become available. Click on it to access the Test environment.

image


Copy the JSON packet code from the below table into the “Payload content” tab, then click on “Test” button, and check the “Output” tab.

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
30
31
32
33
34
35
36
37
38
39
40
{
    "timestamp": "1741688471",
    "serialnum": "50012345",
    "type": "Router500",
    "model": "8D5913",
    "method": "event",
    "msg_cnt": "1494",
    "done": "true",
    "modbus": {
        "data": [{
            "device": "Energy_Meter",
            "event": "read",
            "samples": [{
                "timestamp": "1741869373",
                "reg": "Volts",
                "unit": "V",
                "value": "228.800000",
                "deferred": "false"
            }, {
                "timestamp": "1741869374",
                "reg": "Ampere",
                "unit": "A",
                "value": "0.868000",
                "deferred": "false"
            }, {
                "timestamp": "17418693735",
                "reg": "Frequency",
                "unit": "Hz",
                "value": "50",
                "deferred": "false"
            }, {
                "timestamp": "1741869376",
                "reg": "kVA",
                "unit": "kVA",
                "value": "1.491000",
                "deferred": "false"
            }]
        }]
    }
}

image


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.

image


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.

image


Set the Modbus serial interface enabled, set type, speed and data format as for the Energy Meter operating parameters.
Click on “Save” button.

image


Go to the “Modbus” –> “Modbus Master” from the drop-down menu.
Click on “Add” button.

image


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.

image


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.

image


We fill in the needed parameters for the Voltage (Volts) values and click “Save” button.

image


Repeat the previous steps for Current (Ampere), Frequency (Hertz) and Power (kVA) by clicking on “Add” button.
The final result will look as below.

image


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 ModbusMQTT Configuration from the drop-down menu.

image


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.

image


In order to start the newly configured processes it is needed to restart the device.
Select Device – “Reboot” from the drop-down menu.

image


Click on “Reboot” and confirm.

image

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.

image


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.

image


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

image


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

image


Find the “Analogue gauges” widget bundle and click on it.

image


Select the “Radial gauge” widget.

image


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

image


You have added a widget that displays the current power readings.

image


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.

image

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