Getting started with LoRaWAN and Python using Zerynth and The Things Network

By on May 23, 2017

Web site:

https://www.zerynth.com/blog/getting-started-with-lorawan-and-python-using-zerynth-and-the-things-network/

Project Summary:

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

Full Project:

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 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 this technologies:

  • Node – an object with an embedded low-power communication device
  • Network – route messages from Nodes to the right Application, and back.
  • Gateway – antennas that receive broadcasts from Nodes and send data back to Nodes
  • Application – 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

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 MCU board and a LoRa Click, that carry 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. In the figure below is also present a Temp&Hum Click (not necessary for this tutorial).
    Flip&Click + LoRa click + Temp&Hum Click
  • Zerynth Studio: a 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 an 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 to 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, that 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 you 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.

 

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 announced during the Embedded World 2017.

Stay tuned!

About Luigi F. Cerfeda

Yet another Tony Stark wannabe

Leave a Reply

Your email address will not be published. Required fields are marked *