How to communice Dragino -NB and -CB series devices data by MQTT with Thingseye
Table of Contents:
1. Introduction
This document guides you on integrating Dragino -NB and -CB series devices data with Thingseye.
The NB series devices end with the suffix -NB, and the CB series devices end with the suffix -CB. For example, S31B-NB is an NB device, and S31-CB is a CB device.
2. Prerequisites
To complete this tutorial, you need to have certificate files. lns1.thingseye.io is the Dragino's MQTT broker, which requires a CA certificate file, Certificate file, and the Private key file to use.
If customers need to use this MQTT connection with Thingseye, they need to contact TE team to obtain three license files or click this link to download the certificates..
3.General MQTT Connection
The NB-IoT Sensor can send packet to server use MQTT protocol.
Below are the commands.
AT Commands:
AT+SERVADDR=120.24.4.116,1883 // Set MQTT server address and port
AT+CLIENT=CLIENT // Set up the CLIENT of MQTT
AT+UNAME=UNAME // Set the username of MQTT
AT+PWD=PWD // Set the password of MQTT
AT+PUBTOPIC=NSE01_PUB // Set the sending topic of MQTT
AT+SUBTOPIC=NSE01_SUB // Set the subscription topic of MQTT
Notice: MQTT protocol has a much higher power consumption compare with UDP/CoAP protocol. Please check the power analyze document and adjust the uplink
period to a suitable interval.
4. Data Converters
In Thingseye, Data Converters are components used to transform incoming or outgoing data between different formats, typically to convert raw telemetry data from devices into a structured format that Thingseye can understand, or vice versa.
4.1 Uplink
In the left navigation, click Integrations center, and then click Data converters.
On the Data converters page, click on the ‘+’ button, and then click on the Create new converter from the dropdown menu.
The Add data converter window will appear.
Let's create an uplink data converter for the device named 'Device A'. Name it ‘MQTT Uplink Converter - Device A’ and select the Type as Uplink.
Click on the TBEL button if it has not been selected by default.
Modify the default TBEL function to match with your device as described below:
- Uncomment line 11:
var data = decodeToJson(payload)
- Line 13: Assign your device name to the deviceName field. - We used Device A as it is to match with our device, Device A in the Devices section.
- From line 38: Modify the telemetry section to allow parsed data to be assigned to the fields.
telemetry: {
temperature: data.temperature,
humidity: data.humidity,
rawData: payloadStr
}
The modified uplink decoder function to match with Device A is shown below.
// payload - array of bytes
// metadata - key/value object
/** Decoder **/
// decode payload to string
var payloadStr = decodeToString(payload);
// decode payload to JSON
var data = decodeToJson(payload);
var deviceName = 'Device A';
var deviceType = 'thermostat';
var customerName = 'Customer C';
var groupName = 'thermostat devices';
var manufacturer = 'Example corporation';
// use assetName and assetType instead of deviceName and deviceType
// to automatically create assets instead of devices.
// var assetName = 'Asset A';
// var assetType = 'building';
// Result object with device/asset attributes/telemetry data
var result = {
// Use deviceName and deviceType or assetName and assetType, but not both.
deviceName: deviceName,
deviceType: deviceType,
// assetName: assetName,
// assetType: assetType,
// customerName: customerName,
groupName: groupName,
attributes: {
model: 'Model A',
serialNumber: 'SN111',
integrationName: metadata['integrationName'],
manufacturer: manufacturer
},
telemetry: {
temperature: data.temperature,
humidity: data.humidity,
rawData: payloadStr
}
};
/** Helper functions 'decodeToString' and 'decodeToJson' are already built-in **/
return result;
Once you modify the decoder function, click on the Add button.
You should see that the newly added MQTT Uplink converter NB/CB is listed on the Data Converters page.
5. Add Integration
5.1. Creat new MQTT integration
In the left navigation, click Integrations center, and then click Integrations.
On the Integrations page, click on the '+' button.
The Add integration window appears.
In the Add integration window, configure the following settings:
Basic settings:
- Integration type: MQTT
- Name: MQTT integration
- Enable integration: YES
- Debug mode:YES
- Allows create devices or assets: YES
Click Next button.
Uplink/downlink data converter:
Next, directly select to create a new Uplink data converter .
Click Next button.
Downlink data converter:
- Next, directly select to create a new Uplink data converter .
Click Skip button.
Connection:
- Host: lns1.thingseye.io
- Port: 8883
- Credentials : PEM(Paste 3 certificates to boxs below)Click this link to download the certificates.
- Password: Password or nothng
- Enable SSL: YES
- Topic: It needs to align with the device's topic.
- QoS: 0-At most once or an MQTT QoS level
Click Skip button.
Click on the Add button.
You should see that the newly added integration is listed on the Integrations page.
Since we haven't received data from a device yet, the integration Status is shown as Pending, Active instead if it have.
5.2. Setup uplink and downlink converters
First, you need to download the MQTT uplink/downlink JS code.
- Uplink Converter
The purpose of the decoder function is to parse the incoming data and metadata to a format that ThingsBoard can consume.
Go to the Integrations center -> Data converters page, and find that MQTT uplink converter that was newly created when the integration was created.
Enter edit mode and apply MQTT uplink JS code to this uplink converter.
- Downlink Converter
Go to the Integrations center -> Data converters page, and find that MQTT downlink converter that was newly created when the integration was created.
Enter edit mode and apply MQTT downlink JS code to this downlink converter.
6. Verifying the receipt of data from virtual devices
6.1 How does it work?
We use the Mosquitto MQTT client to simulate MQTT messages, acting as a virtual device. First, install the Mosquitto client on your computer from this link. The Mosquitto client publishes messages to the MQTT broker (HiveMQ) on a specified MQTT topic.
The Mosquitto client publishes messages (payloads) on the topic /device/a. Of course, you can use any topic for testing.
The MQTT payload format is as follows:
Once Thingseye receives this message, it forwards this payload to the matching device through the integration.
5.2 Sending messages
On your computer's terminal, issue the following MQTT command which simulates the device 'Device A'. The message payload contains the fields IMEI, temperature, humidity, and pressure, which hold the values 350693903995577, 30, 80, and 1005 respectively. This payload is also (technically) known as telemetry.
If the integration was performed without errors, the status of the integration changes to 'Active' after the first telemetry transmission.
6.3 Viewing messages
Go back to the Integrations page.
Click on the MQTT integration NB/CB in the Integrations page to see its details.
Click on the Edit button (pen icon).
Click on the Disabled button in the upper-right corner.
Turn on the All messages (15 min) option. This will enable displaying all messages in the Events tab. This setting will expire in 15 minutes, and you will need to repeat the same steps if you want to view the messages in the Events tab later.
Click on the Apply button.
Then click on the Apply changes (tick icon) button.
Now go to the Events tab.
Select the Event type as Debug from the dropdown list.
Publish another message (of course, you can repeat the previous message by pressing the UP arrow on your keyboard and then press Enter key) to your MQTT broker from your terminal, for example:
mosquitto_pub -d -q 1 -h 011731f7928xxxxx.s1.eu.hivemq.cloud -p 8883 -u "xxxxx" -P "xxxxx" -t "device/a" -m '{"IMEI":"350693903995577", "temperature":30, "humidity":80, "pressure":1005}'
Now you can see that uplink message in the Events tab (Click the refresh button if you didn't see any messages in the Events tab). The status should be OK if there is no errors in your integration.
Then click on the three dots (...) in the Message column. You can see the uplink message's payload in the Message window.
Now, you have successfully tested your integration with a simulated uplink payload and verified that it is received by Thingseye, and the device is provisioned.
7. Creating a Dashboard
Thingseye Dashboards provide a powerful way to visualize and monitor real-time and historical data from connected devices. They allow users to create interactive, customizable panels displaying telemetry data, device status, and other key metrics. With a variety of widgets, including charts, maps, and tables, dashboards help users gain insights, track trends, and manage IoT deployments efficiently.
This section guides you on how to create a dashboard to display temperature and humidity data from the device on a time-series chart. You may also use other widgets in Thingseye to display data according to your requirements.
First simulate a few messages using MQTT. This time, we have added the 'humidity' field to the payload. Eg:
In Thingseye, from the left navigation menu, click Dashboards. Then, click the + button and select Create new dashboard from the dropdown menu.
In the Title text box, enter NB/CB Test Dashboard as the title of the dashboard.
Click on the Add button.
Click on the Add widget / Add new widget button.
In the Select widgets bundle window, click Charts.
In the Charts: select widget window, click Time series chart.
Configure the Time series chart widget as follows:
- Datasource - select Device A device you provisioned.
- Series:
- temperature - you can see this key by default.
- humidity - Click Add series button. Then add the humidity for the key and then type % as its unit.
- Click on the Add button.
The time-series chart will appear in edit mode. Resize it by clicking and dragging the lower-right corner.
Click the Save button to add the widget to the dashboard.
Now send the following MQTT messages from the terminal to simulate the data.
mosquitto_pub -d -q 1 -h 011731f7928xxxxx.s1.eu.hivemq.cloud -p 8883 -u "xxxxx" -P "xxxxx" -t "device/a" -m '{"IMEI":"350693903995577", "temperature":27, "humidity":72, "pressure":1005}'
mosquitto_pub -d -q 1 -h 011731f7928xxxxx.s1.eu.hivemq.cloud -p 8883 -u "xxxxx" -P "xxxxx" -t "device/a" -m '{"IMEI":"350693903995577", "temperature":19, "humidity":80, "pressure":1005}'
The chart will update with the values in realtime, as shown in the below image.
8. Configure Physical NB-IoT Sensor
Now, let's experiment with sending data to Thingseye using a real NB-IoT device. For example, we will use the TS01-NB.
First, configure the NB-IoT device with the necessary MQTT settings using AT commands. Below is a list of AT commands you can use.
AT Commands
- AT+PRO=3,3 // Use MQTT to connect to Thingseye. Payload Type set to 3.
- AT+SUBTOPIC=<MQTT subscribe topic> Eg: TS01-NB
- AT+PUBTOPIC=<MQTT publish topic> Eg: TS01-NB
- AT+CLIENT=null
- AT+UNAME=<MQTT Username>
- AT+PWD=<MQTT Password>
- AT+SERVADDR=<Broker address, Port>
Test your uplink by pressing the ACT button for 1 second.
The following image shows the uplink payload of a real Dragino device. The publish topic is 'TS01-NB' that contains fields in the payload, IMEI, IMSI, Model, temperature, etc. Note that we have created a device named TS01-NB in the Devices section in advance.