TheThingsNetwork Integration
Last updated
Last updated
TheThingsNetwork is LoRaWAN network designed for connecting your devices using LoRaWAN stack. After integrating TheThingsNetwork with Tesenso IoT Cloud, you can connect, communicate, process and visualize data from devices in the Tesenso IoT Cloud.
The first step is to create an application in TheThingsNetwork console. Go to console (https://console.cloud.thethings.network/), open Applications section, press add application button and fill required fields.
Application ID - tb_platform
Handler registration - ttn-handler-eu
Handler registration - used to identify region where application will be registered. In our example it will be eu region.
Our device submits data in binary format. We have 2 options where to decode this data:
TheThingsNetwork decoder - data will be decoded before entering the Tesenso IoT Cloud
Tesenso IoT Cloud converters - uplink/downlink converters will be used to decode data from binary format into JSON
In this tutorial, we will make an initial transformation into JSON with TTN decoder and then use Tesenso IoT Cloud converters for correct data processing. In real life scenario, it is up to you where to decode/encode data, because it is possible to do this on any side.
After application registered in TTN, go to payload_formats, select decoder function. We will take the first byte as a temperature value from a device and transform it into JSON.
Press Save payload function
Next step is a Device creation in the TTN. Open Devices page and press register device
Device ID - thermostat_a
Device EUI - press generate button for generating random identified
Press Register button.
We made all required configurations in the TheThingsNetwork (register application, add decoder function and register device). Now we can start configuring Tesenso IoT Cloud.
First, we need to create an Uplink Data Converter which will be used for receiving messages from the TTN. The converter should transform incoming payload into the required message format. Message must contain deviceName and deviceType. Those fields are used for submitting data to the correct device. If a device was not found a new device will be created. Here is how payload from TheThingsNetwork will look like:
We will take dev_id and map it to the deviceName and app_id to the deviceType. But you can use another mapping, which fits your specific use cases. Also, we will take the value of the temperature field and use it as a device telemetry.
Go to Data Converters and create new uplink Converter with this function:
(insert "Add Data Converter" Picture)
For sending Downlink messages from Tesenso IoT Cloud to the device inside TTN, we need to define a Downlink Converter. In general, the output from the Downlink Converter should have the following structure:
contentType - defines how data will be encoded {TEXT | JSON | BINARY}
data - actual data will be sent to the device in TTN. More details about API can be found in this TTN API (https://www.thethingsnetwork.org/docs/applications/mqtt/api/)
metadata - in this object you should place correct devId value that will be used to identify target device in TTN
Go to Data Converters and create new downlink Converter with this function:
This converter will take the version field from the incoming message and add it as a payload field in the outbound message. The destination device is a thermostat_a device.
(insert "Add Data Converter" Picture)
Next we will create the integration with TheThingsNetwork inside Tesenso IoT Cloud. Open Integrations section and add new Integration with type TheThingsNetwork
Name: ttn_integration
Type: TheThingsNetwork
Uplink data converter: ttn_converter
Downlink data converter: ttn_downlink_version
Region: eu (region where your application was registered inside TTN)
Application ID: tb_platform (use Application ID from TTN)
Access Key: use Access Key from TTN