Skip to main content

CO2 Concentration Solution LoRaWAN Network Server

Network Server and Visualization Configuration

This section outlines the operational steps for connecting the device to the network server in both the LoRaWAN and NB-IoT application scenarios.

Figure 10380: LoRaWAN Application Scenarios

LoRaWAN Application

Cloud Network Server Setup

The cloud network server deployment solution involves connecting the gateways and devices to a third-party cloud network server. This server integrates visualization applications to manage CO2 Concentration sensor data in real-time.

This section provides instructions on creating a Datacake visualization application using the TTN v3 cloud network server.

Figure 10381: Cloud network server deployment solution
Connect Gateway to TTN

In this section, the example will use the TTNv3 cloud server and RAK7289 V2 WisGate Edge Lite 2 to demonstrate how to connect the RAK business gateway to a cloud server.

  • Register the Gateway
  1. Register an account and log in to the TTN v3 website. If you already have a TTN account, you can log in with your The Things ID credentials.
Figure 10382: Log in to the TTN website
  1. Once logged into the site, click on Register a gateway to begin the registration process for a new gateway.
Figure 10383: TTN home page
  1. Input the Gateway EUI and then click on Confirm to proceed.

The Gateway EUI serves as a distinct 64-bit extended identifier for the gateway, accessible from the Overview page of the gateway management platform or from the label situated behind the gateway.

Figure 10384: Enter the Gateway EUI
  1. Choose the appropriate frequency plan used by the gateway, and click Register gateway to complete the registration process of the gateway.
Figure 10385: Configure the gateway frequency

Generate Token

TTNv3 supports TLS server authentication and client tokens, which require trust files and keys to configure the gateway and successfully connect to the network.

  1. To generate a key file, navigate to API keys from the Overview page of the registered gateway, then click on Add API key.
Figure 10386: Add API keys
  1. In the Add API key page, set the Name field, tick of the checkboxes shown in Figure 8, then click Create API key.
Figure 10387: Configure the API Key
  1. A new window pops up with the generated key. Copy the new API key by clicking the icon and then the I have copied the key button.
Figure 10388: Copy and save the API Key

Register the Gateway

  1. Navigate back to the gateway management platform Web UI. Click on the left navigation bar to access the LoRa > Configuration tab. Complete the following settings and save them.
  • Basics Station Server Type: LNS Server
  • Server URL: wss://eu1.cloud.thethings.network
  • Server Port: 8887
  • Authentication Mode: TLS server & Client Token Authentication
  • Trust (CA Certificate): Download the certificate
  • Client Token: Copied API Keys
Figure 10389: Configure the gateway
  1. After saving the changes, return to the TTN gateway interface, and navigate to the Gateways tab to confirm that the gateway is now connected to TTNv3 as a Basics Station.
Figure 10390: Gateway connected successfully
Connect Sensor Hub to TTN
  1. Return to the TTNv3 homepage and select Create an application to add a node.
Figure 10391: Select Create application
  1. Click + Create application to initiate the creation of a node.
Figure 10392: Create a new application
  1. Enter the desired Application ID in the provided field, then click on Create application.
Figure 10393: Enter the application ID
  1. Click on the +Register end device button to add a new end device to the application.
Figure 10394: Add the end device
  1. Set the parameters of the end device, as shown in Figure 16.
Figure 10395: End device parameters
  • JoinEUI, DevEUI, and AppKey can be automatically generated by clicking Generate on the TTN web page or customized by the user.
NOTE

Ensure that the three parameters - JoinEUI, DevEUI, and AppKey - are consistent with the parameters set in the WisToolBox application.

  1. After completing the settings, return to the WisToolBox app, and click JOIN NETWORK to send the end device network access request.
Figure 10396: Sending end device network join request
  1. As shown in Figure 18, the Sensor Hub has successfully joined the TTNv3 network server.
Figure 10397: Successfully joined the TTNv3 network server
Visualize Data Through Datacake

Datacake is a versatile IoT platform. It offers a range of features tailored for effective data visualization and management, making it a preferred choice for IoT projects requiring efficient monitoring and analysis.

Create Datacake Integration

  1. In the TTN console, navigate to Integrations on the sidebar, proceed to the Webhooks section, and then click +Add Webhooks to set up an integration.
Figure 10398: Adding an integration
  1. From the list of webhook templates, select the Datacake template.
Figure 10399: Select the Datacake template
  1. Generate an API key for webhook authentication on Datacake. To get started, register a Datacake account, and then log in.
Figure 10400: Log in to the Datacake IoT platform
  1. Navigate to the Datacake workspace. Select Members on the sidebar, and switch to the API Users tab, then click the Add API User button.
Figure 10401: Add API User
  1. Enter the name of the API User, for instance, TTS API. Set the relevant parameters accordingly and click Save to finalize the creation process.
Figure 10402: Set Parameters
  1. Click the Copy button to copy the generated Datacake API Token.
Figure 10403: Copy the generated Datacake API Token
  1. Back on the TTN website, enter sensorhub in the Webhook ID field (as an example), and paste the Datacake API Token you previously copied into the Token field. Click the Create Datacake Webhook button to generate the Datacake Webhook.
Figure 10404: Create the Datacake Webhook

Add Sensor Hub to Datacake

  1. To add a new device, select Devices in the sidebar and click the +Add Device button.
Figure 10405: Add a Device
  1. Choose LoRaWAN from the options and click Next to proceed.
Figure 10406: Choose LoRaWAN connectivity
  1. As the Sensor Hub is a new device, there is no pre-existing template. Create a template by clicking New Product, enter the Product Name, and click Next to proceed.
Figure 10407: Create a New Product
  1. Choose a network server for your device. In this guide, select The Things Stack V3, then click Next to continue.
Figure 10408: Select the Things Stack V3
  1. In the Step 3 Devices tab, enter the device DEVEUI and NAME fields, and click Next to continue.
Figure 10409: Add DEVEUI and Name
  1. In Step 4 Plan, select the preferred subscription plan, and click Add 1 device to add the device. For this example, choose Free.
Figure 10410: Select a subscription plan
  1. The registered devices can now be viewed on the Devices tab.
Figure 10411: Registered device

Create a Payloader Decoder

  1. Click the successfully registered device and go to the Configuration tab. Scroll down to the Payload Decoder field, then copy and save the decoder code.
Figure 10412: Configuration tab
Figure 10413: Decoder code
function Decoder(bytes, port) {
var decoded = {};
function value(bytes) {
var value = (bytes[1] << 8) | bytes[0];
value = twosComplement (value, 16);
return value;
}
var offset = 0;
while (offset < bytes.length) {
var channel_id = bytes[offset++];
var channel_type = bytes[offset++];
if (channel_id === 0x15 && channel_type === 0x7D) {
var current = (bytes[offset++] * 256 + bytes[offset++]);
decoded.Co2 = current.toFixed(1);
} else {
break;
}
}
return decoded;
}
  1. Displace the menu bar to the +Add Field section and click +Add Field.
Figure 10414: Add Field
  1. The Add Field window appears. Fill out the fields shown in Figure 36 to configure the stored data in the device.
Figure 10415: Configuration fields
NOTE
  • Enter an appropriate name in the Name field.
  • The Identifier field will be automatically filled based on the name.
  • When an uplink is received, refresh the page, and the CURRENT VALUE field will be updated.
  • Leave everything else as default, and click Add Field to complete the setup.
  1. When completed, it will look the same, as shown in Figure 37.
Figure 10416: Successfully added fields

Create a Dashboard

  1. To create a dashboard, toggle the edit mode switch on the Dashboard tab of the device in Datacake.
Figure 10417: Turn on the edit mode switch
  1. Click +Add Widget to include a visualization widget.
Figure 10418: Add visualization widget
  1. Select Value from the menu to create a new dashboard.
Figure 10419: Select Value to create a new dashboard
NOTE

You can select various types of widgets to accommodate different data formats.

  1. In the Title field under the Basics tab, name the widget, for example, CO2 concentration.
Figure 10420: Name the Widget
  1. Under the Data tab, click the Field dropdown arrow, select CO2, and set the unit to ppm.
Figure 10421: Setting Parameters
  1. Under the Gauge tab, select the gauge type and color, set the range of values for the widget, and then click Save.
Figure 10422: Set Gauge
  1. When you finish adding the widgets, turn off the edit mode switch to save the edits.
Figure 10423: Added Widget

Built-In Network Server Setup

The RAK gateway comes with a built-in NS, which eliminates the need to deploy NS in the cloud or locally. This gateway is suitable for small-sized industrial application scenarios and offers various advantages such as cost savings, reduced R&D investment, high execution efficiency, and shorter delays.

The built-in network server of the RAK gateway provides MQTT and HTTP integration that allows for post-processing data and implementing solutions based on the needs.

This section will use the public MQTT broker integration as an example to demonstrate how to use the built-in network server to create a visualization application on ThingsBoard.

Figure 10424: Gateway built-in NS application scenario
Configure the ThingsBoard
  1. Log in to ThingsBoard. If you don't have an account yet, create one before proceeding.
Figure 10425: ThingsBoard authentication page
  1. After successfully logging in, you will be directed to the ThingsBoard homepage.
Figure 10426: ThingsBoard Homepage
  1. Navigate to the Integration center > Data converter menu bar to create a data converter for the uplink.
Figure 10427: Create a Data Converter
  1. Click on the Add Data Converter icon and choose the Create new converter option.
Figure 10428: Create a new Converter
  1. Enter the name of the decoder in the Name field (for example, Uplink decoder), leave the Type field as Uplink, and select the JavaScript option.
Figure 10429: Add the decoder code
  1. Edit the decoder code by copying the following code into the edit box. Then, click Add to include the uplink decoder.
/** Decoder **/
// decode payload to string
var payloadStr = decodeToString(payload);
var data = JSON.parse(payloadStr).data;
var bytes = atob(data).split('').map(function(c) {
return c.charCodeAt(0);
});

var values = {};
let i = 0;
while (i < bytes.length) {
var channelId = (bytes[i] << 8) | bytes[i + 1];
var value;
if (channelId === 0x157D) {
value = (bytes[i + 2] * 256 + bytes[i + 3]);
i += 4;
values.co2 = value;
} else {
break;
}
}

var integrationName = 'MQTT Integration';
var deviceName = 'sensorhub_co2';
var result = {
deviceName: deviceName,
attributes: {
integrationName : metadata[' integrationName '],
co2: values.co2,},
};

/** Helper functions **/

function decodeToString (payload) {
return String.fromCharCode.apply (String, payload);
}

return result;
  1. Navigate to the Integration Center > Integrations menu and click the Add Integration icon to add the MQTT integration.
Figure 10430: Add the MQTT Integration
  1. Enter the name of the integration (for example, MQTT Integration) in the Name field and select MQTT in the Type drop-down menu. Click Next to continue.
Figure 10431: Basic Settings
  1. In the Uplink data converter options, click Select existing to choose the previously created decoder (Uplink Decoder), then click Next.
Figure 10432: Select the created decoder
  1. In the Downlink data converter interface, no configuration is necessary. Simply click Skip to bypass this setup.
Figure 10433: WisGate OS Web Management Platform
  1. Configure connection options. Host is the MQTT broker address used for messages. The Host of the external MQTT broker used in this example is broker.hivemq.com. You can choose to use other brokers with a different Host.

  2. Enter the address broker.hivemq.com in the Host field, with the port number 1883. Click the Add topic filter button to configure the subscription topic:

Figure 10434: WisGate OS Web Management Platform
application/{{ application_name }}/device/{{ device_EUI }}/join
application/{{ application_name }}/device/{{ device_EUI }}/ rx
application/{{ application_name }}/device/{{ device_EUI }}/ tx
application/{{ application_name }}/device/{{ device_EUI }}/ack
application/{{ application_name }}/device/{{ device_EUI }}/status
  • application_name: the aapplication ID created in the gateway.
  • device_EUI: the device EUI of the end device.

Modify the parameter values corresponding to the topics based on the actual application created and the device used.

NOTE

The values in the subscription topic must be all lowercase. For example, application/1/device/0123456789abcdef/join.

Figure 10435: WisGate OS Web Management Platform
  1. After configuring the details, click on Add to save and complete the settings.
Figure 10436: WisGate OS Web Management Platform
Configure the Gateway

This section will use RAK7268 V2 WisGate Edge Lite 2 as an example.

  1. To access the gateway web management platform, refer to the WisGateOS V2 User Manual for details.
Figure 10437: WisGate OS Web Management Platform
  1. After successfully logging in, navigate to the LoRa® menu in the left navigation tree. Set the Work mode of the gateway to Built-in network server.
Figure 10438: Set the Work mode of the gateway
  1. Once done with the setting, click the Applications tab, then the Add application button. You can also click add one now text link to add a new application.
Figure 10439: Applications Tab
  1. Configure the following information: Application name, Application Description, and Application Type.
  • Unified Application key: Choose this option if all devices will use the same application key. Once selected, a field for the application key appears, where you can manually type in an application key or click the Autogenerate button to generate one.
Figure 10440: Unified Application Key
  • After enabling the Auto Add Device option, configure the Application EUI option. The value needs to be consistent with the node value. Once you have verified the application EUI and key, the device will be added automatically to the application.
Figure 10441: Auto Add Device
NOTE

You can obtain the values by either querying the end device or generating it automatically and modifying the corresponding value of the device synchronously.

  • Separate Application keys: Each device has its own application key. Add the key when registering the device.
Figure 10442: Add Application Key
  1. Once you've completed the configuration, click on Save Application to add the new application.

  2. In the application list, locate the newly created application and navigate to the End devices tab. If you've enabled the Auto Add Device function, the device will be automatically registered upon the addition request.

Figure 10443: End Devices Tab
  1. Click the Add end device button. In the End device information interface, fill in the following information:
  • Activation Mode: Select the activation mode of the device: OTAA or ABP.
    • Choosing ABP mode creates two additional fields: Application Session Key and Network Session Key. In this example, you’re using OTAA activation mode.
  • End device (group) name: Enter the name of the end device or the group it belongs to.
  • End device description (optional): Optionally provide a description for the end device.
  • Class: Select Class A for the device's operating mode.
  • Frame Counter Width: Maintain the default value.
  • LoRaWAN MAC Version: The protocol version (V1.0.3) of the node.
Figure 10444: Add new end devices
  1. After completing, click Add end devices to proceed to the next step.
Figure 10445: Add the device to the device list
  1. In the Adding end devices interface, enter the device EUI in the End Device EUI (main) field and select the Add to End Devices list button. Then click Add end devices to complete adding the end device.
NOTE
  • The device EUI configured here must match the end device. You can either obtain it by querying the end device or entering one (1) EUI and synchronously updating the corresponding value of the end device.
  • If the EUI is correct, the device will be displayed in the End devices list.
  • If the EUI is incorrect, the device will be displayed in the End devices with an error.
Figure 10446: Complete the end device addition
  1. Click the Add button to confirm adding the device.
Figure 10447: Confirm to add the end device
  1. When finished, you will enter the End devices interface, where you can see the created end device.
Connect Sensor Hub to Built-In Network Server

For specific configuration on how to connect SensorHub to the server, please refer to SensorHub Network Configuration > LoRaWAN Application Scenario. Once completed, the device will join the network. As shown in Figure 69, the end device SensorHub has successfully connected to the gateway's built-in server.

Figure 10448: End device SensoHub has been connected
Configure MQTT Integration
  1. Navigate to the LoRa® > Configuration > Integration Interface Parameters section.

  2. Enable the Enable Integration Interface option and select Generic MQTT as the Integration mode.

Figure 10449: Set up MQTT integration
  1. In the MQTT Broker Address option, enter broker.hivemq.com then click Save changes.

  2. After the device has joined and has been sending uplink data, check the uplink data in ThingsBoard > Integrations > Your Integration > Events.

Figure 10450: View the gateway uplink data
Visualize Data Through ThingsBoard
  1. After creating the data converter, integrating, and obtaining some data in the Event tab, check the automatically created devices based on the decoder in the Entities > Devices > Groups tab.
Figure 10451: Check the device
  1. Click the group named All in the Device groups menu to automatically create a decoder device.
Figure 10452: Automatically created decoder device
  1. Click the device, and navigate to the Attributes tab, and check on the node data.
Figure 10453: Node data
  1. To visualize the data, simply select the values you wish to display, then click the Show on widget button.
Figure 10454: Select Widget
  1. On the next page, choose the desired widget for your data from the Current bundle drop-down menu. In this example, select Outdoor Environment, and then select the appropriate visualization chart by clicking the slide icon.
Figure 10455: Select Widget
  1. After selecting the widget, click Add to dashboard.

By default, the profile does not have a dashboard, so you need to select Create new dashboard and enter a name for the dashboard in the New dashboard title field, for example, SensorHub_co2.

Figure 10456: Enter the dashboard name
  1. After setting the name of the dashboard, click the Add button to add more widgets. Alternatively, check the Open dashboard option to automatically open the created dashboard after adding the widget.
NOTE

If the Open dashboard option is not selected, users can still easily view the added widgets via Dashboard groups > All > [Group Name].

  1. Click the Edit mode icon to the parameter edit mode. Edit

  2. Click the Edit widget icon Edit and complete the following setup steps:

  • Select the CO2 unit in the Value drop-down menu; in this example, it's ppm.
  • Click the Apply button to apply the settings.
  • Click the exit icon Edit> , and then click the save icon Edit> to save the settings.
NOTE
  • The ThingsBoard visualization dashboard editor allows you to adjust the size and shape of widgets by dragging the edges of the widgets in the Edit mode.

  • The parameter values will be automatically rounded due to the different types of widgets selected for the data. If necessary, set the number of decimal places in the icon edit mode.

If the above settings are correct, the final visualization widget on the Dashboard should resemble Figure 78.

Figure 10457: Dashboard created

NB-IoT/LTE CAT-M1 Application

Connect Sensor Hub to MQTT Server

In the Network Server and Visualization Configuration section, the server in the example has been set as a public MQTT broker: broker.hivemq.com. Refer to the corresponding section for details. Users can also choose other brokers or servers, such as AWS IoT Core (optional), according to actual usage scenarios.

Figure 10458: NB-IoT/LTE CAT-M1 application scenario

Visualize Data Through Datacake

In this example, we will utilize Datacake as the visualization platform. Datacake is a versatile IoT platform designed to visualize data from nodes in a user-friendly manner.

To get started, create an account on the official website and log in.

Add Sensor Hub to Datacake
  1. After logging in to your account, navigate to the Devices tab and click + Add Device to proceed with adding the Sensor Hub end device.
Figure 10459: Devices Page
  1. Select the API option and click Next to proceed.
Figure 10460: Select API
  1. As the device is new and there's no ready-made template, choose New Product from the Datacake Product options. Enter the device name in the Product Name field, then click Next to proceed.
Figure 10461: Select New Product
  1. The SERIAL NUMBER field can be left blank. Datacake will randomly generate a serial number for the device, then click Next.
Figure 10462: Add Devices
  1. Select the preferred subscription plan, then click Add 1 device. For this example, choose Free.
Figure 10463: Select a subscription plan
  1. The registered device can now be viewed on the Devices tab.
Figure 10464: Registered device
MQTT Configuration
  1. Click the name of the device you just created in the list to enter the interface, then select the Configuration tab.
Figure 10465: Configuration tab
  1. Scroll down to the API Configuration option and copy the Serial number. Save it locally for later use.
Figure 10466: Copy the serial number
  1. Continue scrolling down to the MQTT Configuration option and configure the external MQTT Broker.
  2. Click +Add new MQTT server and configure the relevant parameters.
Figure 10467: Configure the external MQTT Broker
  1. Fill in the relevant information based on the actual server used, then click Test Connection to verify whether Datacake can successfully connect to the MQTT Broker. The information shown in Figure 89 is just an example.
Figure 10468: Configure the relevant parameters
NOTE

If SSL/TLS encryption and authentication are set for more secure communication, ensure to configure them accordingly in this section. However, for this example, you can skip this option.

  1. If the connection is successful, you will see the message Connection successful. Click Add MQTT Server to complete the addition of the MQTT server.
Figure 10469: Connection established successfully
  1. After successfully adding the MQTT server, click on +Add Uplink Decoder to add a decoder.
Figure 10470: Add MQTT Server
  1. A new window will appear, and fill in the fields according to your project.
Figure 10471: Add Uplink Decoder
  • Subscribe to topics: Configure the subscription topics, that is, the value of the Publish Topic configured in the Network Server and Visualization Configuration section.
  • Decoder function: Copy the following decoding code and paste it into the Decoder function space.
function Decoder(topic, payload) {
var decoded = [];
var data = JSON.parse ( payload.replace (/\s*/g,""));

for (var key in data) {

decoded.push (
{
device: "ed026a4f-f93a-4303-870d-0b78718c78b0",
field: key,
value: data[key]
}
)
}

return decoded;
}

}
NOTE

In the above code, make sure that the parameter serial_number (device: ed026a4f-f93a-4303-870d-0b78718c78b0) matches the serial number saved locally earlier.

  1. Once completed, click Add uplink decoder.
  2. In the Fields option, click +Add Field. In Datacake, the monitoring values of the devices will be stored in Fields. Each device can create a certain number of fields, also known as a data point.
Figure 10472: Set the related parameters of the field
  1. Set the necessary parameters of the Fields. For Fields with multiple data points, add them one by one. Once done, click Add Field.
Figure 10473: Set the related parameters of the field
NOTE

The Identifier field will be automatically filled based on the name.

  1. Once the uplink data is received, the Current value column in the Fields list will display the current monitoring value from the sensor.
Figure 10474: Added sensor monitoring values
Create a Dashboard to Visualize Data

Dashboards can be customized depending on the specific needs and preferences of a project. Follow the steps below to add widgets and visualize the data.

  1. On the device details page, navigate to the Dashboard tab, then toggle on the edit mode switch.
  2. Click on the + Add Widget button to add a widget for visualizing data.
Figure 10475: Open the edit mode
  1. Choose what type of widgets you want to display. For this example, select Value to visualize the CO2 values.
Figure 10476: Select and add widgets for visualizing data
  1. Click on the Data tab. Choose the field for visualization from the Field options and set the unit of the field, which is ppm in this example.
Figure 10477: Select the visualization data field
  1. After configuring the widget, click Save. Once done with the dashboard configuration, turn off the edit mode switch to save the settings.
Figure 10478: CO2 data visualization