Table of Contents:

Draft Document

1. Introduction

This document guides you on integrating Dragino -NB and -CB series devices data with ThingsBoard. For this guide, we use ThingsBoard Cloud, which is one of the ThingsBoard versions that allows you to try it for free.

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 the following:

  • ThingsBoard cloud account - 
  • HiveMQ Cloud account 

2.1 HiveMQ Cloud

Go to https://www.hivemq.com

Click on the Start Free button.

hivwmq-1.png

Click on the Sign Up FREE Now button in the HIVEMQ CLOUD section.

hivemq-2.png

Click on the Sign Up button.

You can sign up with HiveMQ using your GitHub, Google, or LinkedIn account.

If not, provide your email address and a password to create an account by clicking on the Sign Up button.

hivemq-3.png

You will receive an email to verify your email address. Click on the Confirm my account button.

hivemq-4.jpg

You will be redirected to a page asking you to complete your profile. Once done, click the Continue button.

hivemq-5.png

Select the CloudMQ Cloud plan you need. For testing purposes, select the Serverless FREE plan by clicking on the Create Serverless Cluster button.

hivemq-6.png

You will be navigated  to the Your Clusters page. Click on the Manage Cluster button.

hivemq-7.png

In your cluster page, you can find some useful parameters you need to create a MQTT connection.

URL: This is the host name. Click on the copy button to copy it.

Port: 8883

Click on the Getting Started tab to setup the username and the password.

hivemq-8.png

2. Data Converters

In ThingsBoardData 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 ThingsBoard can understand, or vice versa.

In the left navigation, click Integrations center, and then click Data converters.

data-converters-list-empty.png

On the Data converters page, click on the ‘+’ button, and then click on the Create new converter from the dropdown menu.

create-new-converter-menu.png

The Add data converter window will appear. Name it ‘MQTT Uplink Converter NB/CB’ and select the Type as Uplink.

Click on the TBEL button if not selected it by default. Delete the existing decoder function in the code editor. Now copy and paste the following decoder function written in TBEL (ThingsBoard Expression Language) in to the code editor. This decoder function is compatible for both NB and CB series devices.

/** Decoder **/

// decode payload to string
var payloadStr = decodeToString(payload);
var data = JSON.parse(payloadStr);

var deviceName =  metadata.topic.split("/")[3];
// decode payload to JSON
var deviceType = 'sensor';

// Result object with device attributes/telemetry data
var result = {
    deviceName: deviceName,
    deviceType: deviceType,
    attributes: {
        integrationName: metadata['integrationName'],
    },
    telemetry: {
        temperature: data.temperature,
        humidity: data.humidity,
    }
};

/** Helper functions 'decodeToString' and 'decodeToJson' are already built-in **/

return result;

Click on the Add button.

add-uplink-data-converter.png

You should see that the newly added MQTT Uplink converter NB/CB is listed on the Data Converters page.

data-converter-list-showing-uplink-dc.png

On the Data converters page, click on the ‘+’ button, and then click on the Create new converter from the dropdown menu.

create-new-converter-menu.png

The Add data converter window will appear. Name it ‘MQTT Downlink Converter NB/CB’ and select the Type as Downlink.

Click on the TBEL button if not selected it by default. Now copy and paste the following encoder function written in TBEL (ThingsBoard Expression Language) in to the code editor. This encoder function is compatible for both NB and CB series devices.

// Encode downlink data from incoming Rule Engine message

// msg - JSON message payload downlink message json
// msgType - type of message, for ex. 'ATTRIBUTES_UPDATED', 'POST_TELEMETRY_REQUEST', etc.
// metadata - list of key-value pairs with additional data about the message
// integrationMetadata - list of key-value pairs with additional data defined in Integration executing this converter

/** Encoder **/

var data = {};

// Process data from incoming message and metadata

data.tempFreq = msg.temperatureUploadFrequency;
data.humFreq = msg.humidityUploadFrequency;

data.devSerialNumber = metadata['ss_serialNumber'];

// Result object with encoded downlink payload
var result = {

   // downlink data content type: JSON, TEXT or BINARY (base64 format)
   contentType: "JSON",

   // downlink data
   data: JSON.stringify(data),

   // Optional metadata object presented in key/value format
   metadata: {
            topic: metadata['deviceType']+'/'+metadata['deviceName']+'/upload'
    }

};

return result;

Click on the Add button.

add-downlink-data-converter.png

You should see that the newly added MQTT Downlink Converter NB/CB is listed on the Data Converters page.

data-converters-list.png

3. Add Integration

In the left navigation, click Integrations center, and then click Integrations.

integrations-list-empty.png

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 NB/CB
  • Enable integration: YES
  • Allows create devices or assets: YES

Click Next button.

add-integration-basic-settings.png

Uplink data converter:

  • Click on the Select existing button.
  • Uplink data converter: Select MQTT Uplink Converter NB/CB from the dropdown list.

Click Next button.

add-integration-uplink-data-converter.png

Downlink data converter:

  • Click on the Select existing button.
  • Downlink data converter: Select MQTT Downlink Converter NB/CB from the dropdown list.

Click Next button.

add-integration-downlink-data-converter.png

Connection:

  • Host: Cluster URL (Eg. 011731f7928541588a6cdfbbedfc63f4.s1.eu.hivemq.cloud)
  • Port: 8883
  • Credentials: Basic
  • Enable SSL: YES
  • Username: Username (from your HiveMQ Cloud Cluster with your credentials)
  • Password: Password (from your HiveMQ Cloud Cluster with your credentials)
  • Topic: tb/mqtt-integration-tutorial/sensors/+/telemetry (the + replaces any 'device name' and creates devices in the Entities -> Devices)
  • QoS: 0-At most once

add-integration-connection.png

Click on the Advanced settings button.

  • Clean session: NO
  • Retained: NO

add-integration-connection-advanced-settings.png

Click on the Check connection button to verify the MQTT connection using the provided parameters.

check-connection.png

If the connection is successful, you will see the Connected message. If not, check your connection parameters again.

connection-success.png

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.

new-integration-pending.png

5. Verifying the receipt of data from the device

On the terminal, issue the following MQTT command which simulates the device S31B-NB.

mosquitto_pub -d -q 1 -h mqtt.eu.thingsboard.cloud -p 1883 -t v1/devices/S31B-NB/telemetry -u "24vk3w9h7sqdld1me5eh" -m "{temperature:20}"

If the integration was performed without errors, after the transmission of the first telemetry, a new device with the name “S31B-NB” will appear in the Devices → All. Also, you can verify the input and output data, respectively, before and after conversion in Data converters → UDP Uplink Converter  NB/CB → Events.

Tags:
Created by Dilisi S on 2025/03/01 22:51
    
Copyright ©2010-2024 Dragino Technology Co., LTD. All rights reserved
Dragino Wiki v2.0