The Zerynth IoT Platform is a full set of hardware-software tools designed by IoT experts to enable an easy transition from the prototyping phase to mass production in a flexible, scalable, and efficient way.

Zerynth Platform consists of

Hardware

Zerynth hardware is powerful, power-efficient, and secure, with development boards and expansion boards that add unique functionalities to your application, and a powerful IoT module that can be integrated easily into your end-product.

Software

Zerynth OS is an operating system designed to simplify the development process. It features a Python/C Development environment and seamless integration with other hardware vendors.

The Zerynth Cloud makes it possible to manage IoT devices, store data, visualize data, and gain insights from a single interface.

The following article was released in May 2017. To provide better software-hardware integration, support more industrial features and the best prototyping platform for IoT products, Zerynth released Zerynth SDK v3 that supports revamped SDK, new development boards, and a complete cloud service.

Zerynth continuously supports and adds new features and functionalities, At the moment, Zerynth V3.0.6 does not support LoRaWAN. All of the following information is based on Zerynth SDK V2.x.x which is discontinued and we recommend migrating to Zerynth SDK V3.

The IoT revolution also depends on the spread of LPWAN (Low Power Wide Area Network) and the LoRaWAN protocol, defined by the “LoRa Alliance“. In more detail, LoRaWAN is a media access control (MAC) protocol for wide area networks. It is designed to allow low-powered devices to communicate with Internet-connected applications over long-range wireless connections.

The TTN (The Things Network), a global community of people from over 84 countries, is building a global Internet of Things data network based on LoraWAN. Tale a look at these terms to have a better overview of these technologies:

  • Node, End Device – an object with an embedded low-power communication device
  • Gateway – antennas that receive broadcasts from Nodes and send data back to Nodes
  • Network Server – route messages from Nodes to the right Application, and back.
  • Application Server – a piece of software, running on a server
  • Uplink Message – a message from a Device to an Application
  • Downlink Message – a message from an Application to a Device

LoraWAN Architecture

In this tutorial, we’ll see how to create a LoraWAN network programmed in Python using Zerynth and connected to The Things Network. In particular, we’ll see how to:

  • Configure a Link Labs Gateway.
  • Program a Node in Python using Zerynth. In this case, the node is a Flip&Click by Mikroelektronika (based on the microcontroller SAM3X by Microchip). The LoRa module is a “LoRa Click” by Mikroelektronika (based on the RN2483 chip by Microchip).
  • Connect the node to TTN (The Things Network) Console.

Required Material

  • LoraWAN Gateway. In this case, we’ve used a Link Labs BS-8, an industrial-grade IoT/M2M gateway for use with LoRa networks. It’s capable of supporting thousands of endpoints with 8 simultaneous receive channels.
    Link Labs Gateway LoRa
  • LoraWAN endpoints. In this case, we’ve used Flip&Click as an MCU board and a LoRa Click, that carries Microchip’s RN2483 fully certified LoRa Sub-GHz, 433/868 MHz European R&TTE Directive Assessed Radio Modem. Two antenna connectors allow you to choose which of the two frequency bands will be employed. The figure below also presents a Temp&Hum Click (not necessary for this tutorial).
    Flip&Click + LoRa click + Temp&Hum Click
  • Zerynth Studio: our professional IDE that provides a platform for developing your Python or hybrid C/Python code and managing your boards. It includes a compiler, debugger, and editor, alongside tutorials and example projects for an easy learning experience.
  • TTN (The Things Network) Console: you need to create/register an account entering a username and an email address.

Link Labs LoraWAN Gateway configuration

  1. Turn on the gateway: connect the antennas and apply power.
  2. Connect a PC: wait a minute for the gateway to bootstrap, then connect a PC to the local Ethernet jack (the middle one) using an Ethernet cable.
  3. Navigate to the local webpage: on the connected PC, open a browser and navigate to 192.168.3.3. Log in using username “admin” and password “password.”Link Labs local webpage
  4. The local webpage provides an interface to view the status of the gateway and to connect it to the Internet.Link Labs gateway status
  5. To connect using WiFi select the Enabled checkbox in the Wireless tab of the local webpage. Then select a Wifi network from the SSID drop-down listbox and enter the password in the SHARED KEY editbox and click Submit. After a few moments, the Wireless tab updates with the connection information.

Follow the official Link Labs guide for more detailed info.

Connecting the LoraWAN gateway to The Things Network

The first step is to get the root password, so you can install whatever packages are needed.  To get the root password you have to send your gateway ID, which is accessible on the local web page, at community@link-labs.com, as reported in this thread on the TTN forum.

Once you have the root password, access the gateway through ssh protocol, and follow this guide to setup and configure the router to auto-connect to TTN.

Now you have to register your gateway to TTN, following this link.

LoraWAN Node configuration

First of all, you have to build an Application through the TTN console. So, go to the Application page and clicking on “add application” a new page, similar to the one below, will open.

Enter a unique Application ID as well as a Description & Handler Registration.

Then, to send data up to the new Application you just registered, you need to register your LoraWAN nodes.

To do this, navigate to the “Devices” tab on the Application home page and click the “Register Device” button.

In the Register Device panel, you’ll need to complete the forms for the Device ID and the Device EUI, which must consist of exactly 8 bytes, given in hexadecimal. You can get this code directly from your board, following the instructions below.

Programming the LoraWAN Node in Python using Zerynth

It’s time to use Zerynth to program your board in Python and get the needed Device EUI of your LoraWAN module. In particular, we’ll use the Zerynth library for the RN2483 LoraWAN chip, mounted on the LoRa Click by Mikroelektronika.

Once you have installed Zerynth Studio and created a Zerynth user, you can clone the exampleget ui“. You can find the example in the “Examples Browser” panel or you can use the “Quick Search” feature, searching for “rn2483”.

Once you have cloned the example, uplink the code to your board. As you can see below, the Python script is very very simple.

Copy to Clipboard

Note that the LoRa Click has to be connected to the block A of the Flip&Click. If you want to use another block you have to change the parameter of the function rn2483.get_hweui().

Opening the serial monitor you can get the Device UEI you need to register the device in the TTN console.

Now return to the Register Device Panel on the TTN Console, insert the code and click on the “Register” button.

We are almost ready to send our first data from the LoraWAN module to the TTN console. To do this we need to uplink another very simple Python script into our board. Cloning the example “ping” you’ll see something like this:

Edit the lines 8 and 9 with the “appeui” and the “appkey” that you can find in the Device Overview on the TTN Console.

Uplink the code and you’re done!

Now click on the “Data” tab of the TTN Console and you can see your data sent by the LoraWAN module!

That’s all!

In the next tutorials, we’ll see how to retrieve data from the TTN Console to develop a Map Dashboard of a distributed sensor logging network, as we announced during the Embedded World 2017.

Download Zerynth Studio

We hope you enjoyed this tutorial, and if you haven’t downloaded Zerynth Studio by now – there’s no time like the present, download it today and use the best possible tool for programming microcontrollers in Python.

Share This Story, Choose Your Platform!

About the Author: Luigi F. Cerfeda

Luigi is a biomedical engineer, and is currently Sales Director at Zerynth. Being one of the first members on the team, he has held various roles in the company as he has a deep knowledge of the IoT market and Industry 4.0.

Follow Zerynth on

Latest Posts