LoraWanDustSensor

From RevSpace
Jump to navigation Jump to search
Project LoRaWAN dust Sensor
LoraWanDustSensor.jpg
LoRaWAN airborne particulate matter sensor
Status In progress
Contact bertrik
Last Update 2023-04-08

What is it?

This is a companion project of Sensor-data-bridge.

The concept consists of:

  • a sensor that measures airborne particulate matter and sends the measurement data using LoRaWAN to TheThingsNetwork (TTN)
  • a forwarder application that collects the data from TTN and forwards it to sensor.community (formerly luftdaten), opensensemap, mycayenne dashboard, etc.

Features

  • Supported particulate matter sensors (auto-detected):
    • Nova Fitness SDS011 particulate matter sensor, provides PM10, PM2.5
    • Sensirion SPS30 particulate matter sensor, provides PM10, PM4.0, PM2.5, PM1.0
    • BME280 humidity/temperature/pressure sensor, provides humidity, temperature, barometric pressure
  • Uses LoRaWAN/TheThingsNetwork for communicating the measurement values:
  • Hardware is based on off-the-shelf ESP32+LoRa hardware, specifically
    • TTGO LoRa32 v1 and
    • Heltec LoRa32 v2
  • Works with TTNv3, the most recent version of TheThingsNetwork infrastructure
  • Uses over-the-air-activation (OTAA), parameters have a sensible default and are stored in EEPROM:
    • Device EUI defaults to the ESP32 built-in unique id
    • APP EUI and APP key can be configured using the serial port
  • LoRaWAN OTAA credentials are shown as a QR-code so they are machine-readable
  • Uses LoRaWAN automatic-data-rate (ADR) to optimise data rate and transmit power
  • Data upload interval defaults to 5 minutes (SF7), scales with spreading-factor to satisfy the fair-access-policy of TheThingsNetwork
  • Data is encoded over LoRaWAN as Cayenne LPP, no custom payload decoder needed
  • Supports WiFi over-the-air firmware upgrade

I am publishing all source code on github and documentation on this wiki.

Similar nodes

A similar thing has been done by:

One thing in particular that my concept does better than existing solutions is to use proper OTAA for the LoRa connection to TTN. OTAA means over-the-air-activation and is a mechanism to dynamically negotiate encryption keys and communication settings.

Next steps

  • Automate building and uploading of BIN files on github with github actions/workflows
  • Restructure firmware a bit to make the main .ino file smaller
  • Implement a simple command set through LoRaWAN downlink commands, for example:
    • create a basic command structure: command port, payload encoding, e.g. 1st byte is command id
    • a command to trigger an immediate reboot of the node
    • a command to assist in geolocation, performing a WiFi AP scan:
      • Per AP we send 8 bytes: 1) MAC 2) RSSI 3) channel, so a total of 6 APs can be send in 48 bytes

Ideas:

  • Base send interval on the exact time spent sending data, investigate if the LoRaWAN device stack supports this -> not currently explicitly supported
  • Add support for Davis Airlink local API, more information at https://weatherlink.github.io/airlink-local-api/
  • Make measurement values available through bluetooth
  • Implement the ESP-Now lamp/display protocol, for easy visualisation, see https://revspace.nl/StofAnanas#Next_generation.
    • Start with sending the particulate matter measurements
    • Add a suggested colour indication later

QR code for TheThingsNetwork credentials

LoRaWAN credentials

This idea is to make use of the display to show a QR code with all details needed for configuring the device on TheThingsNetwork (DevEUI, AppEUI, AppKey). The QR is shown after startup of the sensor, you can take a picture and send it to person entering the device in the TheThingsNetwork, no risk of typing errors.

  • QR contents will be:
    • DevEUI based on ESP32 unique id
    • AppEUI (fixed in the firmware)
    • AppKey to be randomly generated (and stored in EEPROM), much more secure than a fixed key
  • QR code library: https://github.com/ricmoo/QRCode
  • Example content should fit in 29x29 pixel version 3 QR code (format "OTAA:JoinEUI:DevEUI:AppKey" as hexadecimal)
OTAA:1122334455667788:1122334455667788:112233445566778899AABBCCDDEEFF00

Bluetooth interface

There are now official Bluetooth UUIDs for GATT characteristic and object types for PM10, PM2.5 and PM1.0, see https://btprodspecificationrefs.blob.core.windows.net/assigned-numbers/Assigned%20Number%20Types/Assigned_Numbers.pdf

Assigned numbers:

  • 0x2BD5: PM1.0
  • 0x2BD6: PM2.5
  • 0x2BD7: PM10
  • ...

Links

Useful links for the TTGO LoRa board:

Hardware

The node is based on Arduino-compatible ESP32 boards with LoRaWAN:

  • For the processor board, either the
    • TTGO LoRa32 V1 ("ttgo-lora32-v1") or the
    • Heltec LoRa32 V2 can be used.
  • The particulate matter sensor is the SDS011 or the SPS30, the sensor type is auto-detected.
  • The humidity/temperature sensor is the BME280 (superior to the DHT11/22), auto-detected.
  • An external SSD1306 display (I2C) can be connected, for easier mounting into the casing and avoiding burn-in the built-in OLED, auto-detected.

Pinout

TTGO LoRa v1 Heltec LoRa v2 Sensor Remark
5V 5V 5V (SDS pin 3) SPS30 5v (red), triple-check this, swapping 5V/GND destroys the SDS011
GND GND GND (SDS pin 5) SPS30 gnd (black), triple-check this, swapping 5V/GND destroys the SDS011
GPIO23 GPIO23 RXD (SDS pin 6) SPS30 RX (white?)
GPIO22 GPIO22 TXD (SDS pin 7) SPS30 TX (purple?)
3.3V 3.3V/Vext BME280 3V Both Vext and 3.3V can be used
GND GND BME280 GND ground
GPIO15 GPIO15 BME280 SCL Piggybacking on the I2C bus to the display
GPIO4 GPIO4 BME280 SDA Piggybacking on the I2C bus to the display

For reference:

Note: pins 34, 35, 36, 39 are INPUT ONLY!

Display

The display on the ESP32 LoRa boards is an 128x64 pixel OLED display. It wears out after some months, pixels that have been on more than other pixels will become dimmer.

Hackaday article about this effect. The burn-in/dimming effect is very obvious here.

The firmware tries to auto-detect an external display, and if found, disable the internal display to avoid burn-in.

Things to keep in mind when connecting an external display:

  • You need a 128x64 display with I2C interface (not SPI), four pins VDD/GND/SCL/SDA
  • Choose either a full yellow or full cyan OLED. OLEDs with *white* pixels seem to burn in quite quickly. Avoid picking a partial yellow/partial cyan OLED, the QR code with LoRaWAN OTAA credentials cannot be displayed correctly on these.
  • The pin order appears to vary, in particular take note of VDD and GND, they can be exactly the other way around between models

Firmware

Compile and upload the firmware

Source code is hosted on github:

  • Arduino node, written in C/Arduino, built using platformio. This firmware joins TTN by OTAA and sends the measurement data using Cayenne.
  • TTN-to-luftdaten forwarder, written in Java, built using gradle. This picks up the Cayenne encoded data and forwards it to the Luftdaten API.

On Linux, with platformio (the command line tool), instructions for Debian Linux are:

  • install platformio:
 sudo apt install python3-pip
 sudo pip3 install platformio
 pio update
  • get the source from github:
 git clone https://github.com/bertrik/LoraWanPmSensor
  • enter the correct directory:
 cd LoraWanPmSensor
  • compile and upload (for TTGO LoRa32 v1 board):
 pio run -e ttgov1 -t upload

or (for Heltec LoRa32 v2 board):

 pio run -e heltecv2 -t upload
  • when source code has updated, run the following and perform the previous step again after that
 git pull

Firmware update

Firmware update

Once the initial firmware has been loaded into the device, further firmware updates can be done over WiFi:

  • Depending on the board you have, check that you have either a ttgov1.bin or heltecv2.bin firmware file
  • Connect to the access point set up by the node, it's called 'ESP-XXXXXXXXXXXX', where XX is the same as the LoRaWAN device EUI
  • Using a browser, go to http://192.168.4.1 , a firmware selection screen appears as shown on the right
  • Select the appropriate BIN file, the firmware will be updated and the board reboots

Payload encoding

My firmware uses the Cayenne LPP (low power payload) encoding. For the SPS30, a custom encoding is used, that consists just of a block of 16-bit values, sent on LoRaWAN port 30.

Cayenne

It's reasonably compact, it's a standard format, you can get a preview of the data in the TTN console. Interacts nicely with other platforms.

Specification for Cayenne LPP 2.0

Over-the-air payload encoding:

  • 4 bytes: PM10: analog input (type 2), channel id 1, with value in units of 0.01 ug/m3, saturated to 327.67 ug/m3
  • 4 bytes: PM2.5: analog input (type 2), channel id 2, with value in units of 0.01 ug/m3, saturated to 327.67 ug/m3
  • 4 bytes: Temperature: temperature (type 103), with value in units of 0.1 degrees celcius
  • 3 bytes: Humidity: humidity (type 104), with value in units of 0.5 %

Particulate matter concentrations higher than 327.67 ug/m3 are saturated to 327.67, this is the maximum that can be represented as analog value in Cayenne.

Optionally:

  • 4 bytes: PM1.0: analog input (type 2), channel id 0, with value in units of 0.01 ug/m3, saturated to 327.67 ug/m3
  • 4 bytes: Pressure: barometer (type 115), with value in units of 0.1 mbar, or 10 Pa (optional)

A nice thing about Cayenne is that you can simply leave items out if you don't support them, which results in a shorter yet still valid message.

Example:

 0x01 0x01 0xXX 0xXX  0x02 0x01 0xYY 0xYY  0x03 0x67 0xTT 0xTT  0x04 0x68 0xHH
 <== PM10 value ===>  <== PM2.5 value ==>  <== temperature ==>  <= humidity =>

Total payload size is 15 bytes. The LoRaWAN header adds 13 bytes (at least).

Particulate matter values encoded are averaged over the measurement interval.

Update: discovered that the Cayenne standard *does* actually support a "particle concentration" id, this is 125, derived from IPSO id 3325 http://www.openmobilealliance.org/tech/profiles/lwm2m/3325.xml . No idea yet though how to specify the type of particle measurement, if there's any convention for PM10, PM2.5, etc. The resolution is only 1 ppm, with typical sensors delivering 0.1 ppm resolution.

Binary

How other projects encode the data:

A smaller payload means less time in the air, smaller chance of collision with other LoRaWAN packets and more packets per hour. However, there is always an overhead from the LoRaWAN package (minimum 13 bytes), so using the smallest encoding (5 bytes) compared to the largest (16 bytes), reduces the on-air-time by only 23%.

LoraWan time budget

The number of bytes per telemetry packet and the number of packets sent per day determine how much of the available "airtime" we use. TheThingsNetwork states a fair-use-policy of 30 seconds per day total uplink time.

Consider the following:

  • radio regulations generally have a 1% duty cycle requirement for the two bands used by the 8 LoRaWAN (EU) frequencies, so according to the legal limits, there is about (86400s x 1% x 2bands) = 1728 seconds per day send time at the best case.
  • TheThingsNetwork has a FUP of 30s of data upload per day. This is actually a *lot* more strict than allowed purely by radio regulations.
  • The sensor.community backend runs on a 5 minute interval, or 288 measurements per day.
  • The default sensor.community WiFi firmware sends new data every 145s by default

With the TTN FUP of 30s upload per day and 5 minute upload interval, we can spend 30s / 288 = 104 ms on each transmission.

Using the LoRaWAN airtime calculator we can determine which modes can be used. At 15 bytes payload, this is only possible at SF7, the highest LoRa speed. Stretching the TTN guideline a bit, say by a factor 2, we can achieve those transfers still only at SF7 and SF8. So you need to be relatively close to a gateway.

In terms of interval:

  • SF7: payload 17 bytes -> 71.9 ms/transmission -> every 3m27s
  • SF8: payload 17 bytes -> 123,4 ms/transmission -> every 5m55s
  • SF9: payload 17 bytes -> 226,3 ms/transmission -> every 10m32s
  • SF10: payload 17 bytes -> 452.6 ms/transmission -> every 21m43s

With a smaller payload, can we use higher spreading factors? :

  • smallest possible binary payload is 4 bytes (PM10 and PM2.5, no temperature, no humidity): SF7 takes 51.5 ms, SF8 takes 92.7 ms, SF9 takes 164.9 ms
  • smallest Cayenne payload is 8 bytes (PM10 and PM2.5, no temperature, no humidity): SF7 takes 56.6 ms, SF8 takes 102.9 ms, SF9 takes 185.3 ms

So, in conclusion: With the FUP of TTN and use of Cayenne encoding, you can just barely send enough data to transport PM data! Also note that the payload size does not actually differ *that* much, this is because of the LoRaWAN overhead of 13 bytes minimum and pre-amble symbols which are sent anyway.

Downlink commands

I plan the following downlink commands:

  • "info", retrieves information on the platform, hardware and firmware version
  • "reboot", performs a remote reboot, OTAA will be performed. This command should only be sent UNconfirmed, as the reboot is performed *before* sending the reply back. This could result in a reboot-loop. A reboot request with confirmed bit is therefore ignored.
  • "locate", performs a wifi scan so the node can be located, response data contains an 8-byte structure per AP: 6-byte MAC address, 1-byte RSSI, 1-byte channel. A max of 6 APs is reported.

Principles:

  • command requests are sent over a specific port, say port 100
  • responses are sent back on the same port
  • commands can be confirmed or unconfirmed, the response will mimic the command in this respect
  • commands and responses have a simple structure: first byte is command id, rest is command/response-specific