My Msc Summer Project
This repository contains my Masters-level summer project. The title is LoRaWAN Signal Mapping. The software contained here provides a complete system for mapping and visualising the signal coverage of The Things Network.
The system is split up into 2 primary parts:
It’s best explained with the aid of a diagram or two:
The above flowchart describes the workflow when using the system:
DATA.TSV
file on the IoT device’s microSD card is copied off and placed on the server.The flow of data during use can be shown using a diagram:
This software has a number of requirements in order to function properly:
awk
(for text processing by the build script)Before doing anything, clone this git repository to both the server (for the TTN listener etc.) and your local machine (for programming the IoT device):
If you have somehow obtained a static copy of the code (e.g. through the University’s marking system), then skip the above and use that instead.
Next, cd
to the root of the repository and then run the setup task of the build script:
On Windows, this should be run in Git Bash (accessible from the start menu when Git is installed - don’t forget to cd
to the root of the repository).
First, a device must be built and provisioned. See HARDWARE.md
in this repository for detailed instructions on how to do this.
Once built, copy iot/main/settings.custom.cpp.example
to iot/main/settings.custom.cpp
and follow the instructions fill in the fields there. To do this, you’ll need to register the device using ABP (Activation By Personalisation) on The Things Network. This guide tells you how to do this.
It is suggested that the following Bash one-liner be used to generate a new encryption key in the right formats:
(Paste it into a terminal and hit enter)
Then, review iot/main/settings.h
to make sure it matches your setup (e.g. all the pin numbers are correct)
Next, copy the folders in iot/libraries
to your Arduino IDE libraries folder.
Finally, open iot/main/main.ino
in the Arduino IDE and program the IoT device itself.
This step should be completed on the server.
Once a device has been constructed, running the The Things Network listener is next. This requires giving the system the The Things Network credentials.
Edit the file called settings.toml
in the root of this repository (or create it if it doesn’t exist), and make sure it contains the following:
[ttn]
app_id = "{APPLICATION_ID}"
access_key = "{TTN_ACCESS_ID}"
encryption_key = "{ENCRYPTION_KEY_FROM_STEP_1}"
port = 8883
tls = true
devices = [ "{DEVICE_NAME_FROM_TTN}" ]
The app_id
and access_key
can be obtained from The Things Network Console:
The device name can be obtained from step #1, when you registered the device with The Things Network. Alternatively, if the device is already registered, it can be obtained from the device list if you click the “X registered devices” text.
With settings.toml
filled in, you can now start TTN Listener:
….it will display an error message if you forgot a value.
Now that the TTN listener is running, the IoT device can be carried around and data collected.
This step should be completed on the server.
Once data has been collected by the IoT device, it can then be processed by the Node.js server application.
Copy the DATA.TSV
file from the IoT device’s microSD card to the root of the repository on the server. It is suggested that scp
(Linux) or WinSCP be used to do this.
Next, fold DATA.TSV
into the database like so:
Then, train the AIs on the collected data like this:
The architecture of the neural networks trained can be customised by editing settings.toml
. Check server/settings.default.toml
for a guide on the different options available.
With the AIs trained, the browser-based web interface can be used to display the output as a map. Any static web server will do, but the build script has one built-in (if PHP is installed) for convenience:
If an alternative server is to be used, it should serve the app/
directory that can be found in the root of this repository.