Difference between revisions of "LoraWanDustSensor"

From RevSpace
Jump to navigation Jump to search
(28 intermediate revisions by the same user not shown)
Line 8: Line 8:
  
  
== The plan ==
+
== The idea ==
The plan is to create a system consisting of:
+
The idea is to create a system consisting of:
* a sensor that measures airborne particulate matter and sends the measurement data using LoRa/TheThingsNetwork to a central location.
+
* a sensor that measures airborne particulate matter and sends the measurement data using LoRa to TheThingsNetwork.
* a backend that collects the data from TTN and forwards it to luftdaten.info
+
* a forwarder application that collects the data from TTN and forwards it to luftdaten.info
  
This has been done before by other people, but can't find any really good examples:
+
This has been done before by other people, but it appears there is no universal solution.
* source code location is obscure, I will publish all source code on github and put up documentation on this wiki
+
I am publishing all source code on github and will put up documentation on this wiki.
* payload format is non-standard, I'd like to use something relatively universal and standard, so I think I will try to use the Cayenne LPP format.
+
Everyone invents their own payload format, something more universal like Cayenne LPP would be nice.
 +
However I could not find a way to encode particulate matter data using Cayenne, so I'll just invent my own payload format too.
  
This has been done by TTN Ulm, see https://github.com/verschwoerhaus/ttn-ulm-feinstaub (the sensor code) and
+
A similar thing has been done by:
https://github.com/verschwoerhaus/ttn-ulm-muecke (the forwarder, in python)  
+
* https://github.com/VekotinVerstas/AQLoRaBurk
 +
* https://github.com/alexcorvis84/LoRa_MakersAsturias
 +
* TTN Ulm, see https://github.com/verschwoerhaus/ttn-ulm-feinstaub (the sensor code) and https://github.com/verschwoerhaus/ttn-ulm-muecke (the forwarder, in python)
 +
* https://alexander-schnapper.de/2019/04/02/mobile-feinstaubmessung/
 +
* [https://github.com/nijmeijer/TTN_Apeldoorn_in_Data_2018 Apeldoorn-in-data]
 +
* (others...)
  
Sensors join the network using OTAA (instead of ABP), that way I try to minimize the setup of each individual node.  
+
One thing in particular I'd like to do 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 communication/encryption keys instead of programmed specifically in each sensor node.
 +
Once the OTAA is done successfully, the node remembers the network id, device address, session keys, etc for future communication.
  
So I'd like to just re-invent the wheel properly this time.
+
This makes it possible to have a single firmware image for all sensor nodes and it simplifies the setup:
 +
* you flash the node with a unified firmware
 +
* the node shows its unique id on the OLED
 +
* at the TTN console, you register a new device with the unique id
 +
* the sensor node receives encryption keys over the air automatically
 +
* done!
 +
 
 +
(idea: an ESP32 has a wifi connection too, perhaps registering the node can be done fully automatically, over wifi/internet)
  
 
=== Next steps ===
 
=== Next steps ===
* <s>Try out the 'new' LMIC library at https://github.com/mcci-catena/arduino-lmic</s> -> WORKS
+
* Investigate failing re-joins that seem to happen sometimes after the node has been online for a while
* <s>Experiment with OTAA, saving OTAA parameters, restoring OTAA parameters</s> -> WORKS
+
* Implement a kind of schedule: turn the sds011 on, wait some time, take a measurement, turn it off, wait for some time
 +
** make this match the TTN send schedule? it's useless to do a measurement if we don't have TTN airtime to transmit it
 
* Finish the Java software (MQTT listener, payload decoder, luftdaten forwarder)
 
* Finish the Java software (MQTT listener, payload decoder, luftdaten forwarder)
 +
** I don't know what kind of id I can use towards Luftdaten, the regular convention is "esp8266-XXXX", where XXXX is the unique ESP id, but obviously my node is not an ESP8266.
 +
* display SDS011 serial number and date code on the screen
  
=== Dump ===
+
=== Links ===
* [https://github.com/akrasnoshchok/LoRa/blob/master/esp32_heltec_v2/weather_station/weather_station.ino code that joins TTN by OTAA and saves the OTAA parameters]
 
  
 
Useful links for the TTGO LoRa board:
 
Useful links for the TTGO LoRa board:
Line 36: Line 53:
 
* https://github.com/fcgdam/TTGO_LoRa32
 
* https://github.com/fcgdam/TTGO_LoRa32
 
* https://ictoblog.nl/2018/01/10/mijn-eerste-chinese-esp32-verbonden-met-the-things-network
 
* https://ictoblog.nl/2018/01/10/mijn-eerste-chinese-esp32-verbonden-met-the-things-network
 +
* [https://github.com/akrasnoshchok/LoRa/blob/master/esp32_heltec_v2/weather_station/weather_station.ino Example code that joins TTN by OTAA and saves the OTAA parameters]
  
 
== Hardware ==
 
== Hardware ==
The node is based on Arduino, in particular a TTGO ESP32 board with onboard LoRa chip.
+
The node is based on Arduino, in particular a TTGO ESP32 board with onboard SX1276 LoRa chip.
 
The sensor is an SDS-011, just like in the luftdaten project.
 
The sensor is an SDS-011, just like in the luftdaten project.
 +
For humidity/temperature, I'd like to use a BME280.
  
 
NOTE: https://www.thethingsnetwork.org/community/berlin/post/warning-attention-users-of-ttgo21-v16-boards-labeled-t3_v16-on-pcb-battery-exploded-and-got-on-fire
 
NOTE: https://www.thethingsnetwork.org/community/berlin/post/warning-attention-users-of-ttgo21-v16-boards-labeled-t3_v16-on-pcb-battery-exploded-and-got-on-fire
Line 50: Line 69:
 
* SDS011 5V to ESP32 5V
 
* SDS011 5V to ESP32 5V
 
* SDS011 GND to ESP32 GND
 
* SDS011 GND to ESP32 GND
* SDS011 TXD to ESP32 GPIO25
+
* SDS011 TXD to ESP32 GPIO35 (maybe I can find two suitable pins close together)
* SDS011 RXD to ESP32 GPIO34
+
* SDS011 RXD to ESP32 GPIO25 (maybe I can find two suitable pins close together)
 +
* BME280 3V todo
 +
* BME280 SDA todo
 +
* BME280 SCL todo
 +
* BME280 GND todo
  
 
== Software ==
 
== Software ==
Source code can be found [https://github.com/bertrik/LoraWanPmSensor on the github page].
+
=== Source code ===
 +
Source code is hosted on github:
 +
* [https://github.com/bertrik/LoraWanPmSensor Arduino node], written in C/Arduino, built using platformio
 +
* [https://github.com/bertrik/LoraLuftdatenForwarder TTN-to-luftdaten forwarder], written in Java, built using gradle
  
 
=== Common ===
 
=== Common ===
 
==== Packet format ====
 
==== Packet format ====
 
Proposed structure of packets transferred over LoRa:
 
Proposed structure of packets transferred over LoRa:
* structure version id: 2 bytes
+
* PM10 value, encoded in units of 0.1 ug/m3: 2 bytes, big endian
* PM10 value, encoded in units of 0.1 ug/m3: 2 bytes
+
* PM2.5 value, encoded in units of 0.1 ug/m3: 2 bytes, big endian
* PM2.5 value, encoded in units of 0.1 ug/m3: 2 bytes
+
* temperature, encoded in units of 0.1 deg C: 2 bytes, signed big endian
* temperature, encoded in units of 0.1 deg C: 2 bytes
+
* relative humidity, encoded in units of 0.1%, 2 bytes, big endian
* relative humidity, encoded in units of 0.1%, 2 bytes
+
Total: 8 bytes
Total: 10 bytes
 
  
 
Not present value is 0xFFFF. Encoding is big endian.
 
Not present value is 0xFFFF. Encoding is big endian.
Line 71: Line 96:
  
 
How other projects encode the data:
 
How other projects encode the data:
* https://github.com/tijnonlijn/RFM-node/blob/master/dustduino_PPD42NS_example.ino#L327 sends 5 bytes
+
* TTN Apeldoorn (?): https://github.com/tijnonlijn/RFM-node/blob/master/dustduino_PPD42NS_example.ino#L327 sends 5 bytes
 
** 1 byte : 0x04
 
** 1 byte : 0x04
 
** 2 bytes: PM25(?) big endian
 
** 2 bytes: PM25(?) big endian
 
** 2 bytes: PM10(?) big endian
 
** 2 bytes: PM10(?) big endian
* https://github.com/verschwoerhaus/ttn-ulm-feinstaub/blob/master/ttnulmdust/ttnulmdust.ino#L225 sends 8 bytes:
+
* TTN Ulm: https://github.com/verschwoerhaus/ttn-ulm-feinstaub/blob/master/ttnulmdust/ttnulmdust.ino#L225 sends 8 bytes:
 
** 2 bytes: P10 (?) big endian (unit 0.01 ug/m3)
 
** 2 bytes: P10 (?) big endian (unit 0.01 ug/m3)
 
** 2 bytes: P25 (?) big endian (unit 0.01 ug/m3)
 
** 2 bytes: P25 (?) big endian (unit 0.01 ug/m3)
 
** 2 bytes: humidity (unit of 0.01% ?)
 
** 2 bytes: humidity (unit of 0.01% ?)
 
** 2 bytes: temperature (unit of 0.01 degree Celcius)
 
** 2 bytes: temperature (unit of 0.01 degree Celcius)
 +
* RIVM node, sends 20 bytes
 +
** 1 byte temperature (unit deg Celcius ?)
 +
** 1 byte relative humidity (unit % ?)
 +
** 2 bytes pressure (unit?)
 +
** 2 bytes pm10 (unit?)
 +
** 2 bytes pm25 (unit?)
 +
** 2 bytes op1 (unit?)
 +
** 2 bytes op2 (unit?)
 +
** 4 bytes latitude (unit?)
 +
** 4 bytes longitude (unit?)
 +
* Apeldoorn in data: https://github.com/nijmeijer/TTN_Apeldoorn_in_Data_2018/blob/master/AiD_Dust_2018/AiD_Dust_2018.ino#L184
 +
** 4 bytes: pm2_5 float big endian (unit?)
 +
** 4 bytes: pm10 float big endian (unit?)
 +
** 4 bytes: humidity float big endian (unit?)
 +
** 4 bytes: temperature float big endian (unit?)
  
 +
A smaller payload means less time in the air, smaller chance of collision with other LoRa packets and more packets per hour.
  
 
=== Node ===
 
=== Node ===
To compile the code, platformio is used, see the github archive.
+
Source code for the particulate matter measurement node can be found [https://github.com/bertrik/LoraWanPmSensor on the github page].
 +
 
 +
==== platformio ====
 +
To compile and upload the code to the node, platformio is used.
 +
 
 +
To install platformio (example for Debian):
 +
  sudo apt-get install python-pip
 +
  sudo pip install platformio
 +
  pio update
  
For OTAA, I use the following scheme, to keep administration to a minimum:
+
To compile and upload:
 +
  pio run -t upload
 +
 
 +
==== design ====
 +
The function of the node software is to collect data from the SDS011 (particulate matter) and BME280 (temperature/humidity) at regular intervals,
 +
encode this as a data packet and send it over LoRaWAN towards TheThingsNetwork.
 +
 
 +
For the LoRaWAN data connection, over-the-air activation (OTAA) is used. I use the following scheme, to keep administration to a minimum:
 
* The Device EUI is derived from the ESP32 MAC address, the node shows this on its OLED
 
* The Device EUI is derived from the ESP32 MAC address, the node shows this on its OLED
 
* The App EUI is generated in the TTN console, it is the same for all nodes
 
* The App EUI is generated in the TTN console, it is the same for all nodes
 
* The App Key is generated in the TTN console, it is the same for all nodes
 
* The App Key is generated in the TTN console, it is the same for all nodes
* The device is registered in the TTN console by the Device EUI (if this doesn't happen automatically)
+
* The device is registered in the TTN console by the Device EUI (this doesn't happen automatically). Frame counter checks are disabled.
 
* OTAA is done only once for each node. After that, the OTAA parameters are stored in (simulated) EEPROM.
 
* OTAA is done only once for each node. After that, the OTAA parameters are stored in (simulated) EEPROM.
** Perhaps with a long press on the button, we can reset the OTAA?
+
** A long press on the PRG button restarts the OTAA procedure
 
* OTAA progress is shown on the OLED
 
* OTAA progress is shown on the OLED
* If OTAA has been done successfully, the node restores the session parameters on next bootup
+
* If OTAA has been done successfully, the node restores the session parameters negotiated during OTAA on next bootup, so it can quickly resume sending data.
 
* I'm NOT saving the upload frame counter (this would be preferable), just disable the feature in the TTN console.
 
* I'm NOT saving the upload frame counter (this would be preferable), just disable the feature in the TTN console.
  
For OTAA, the following needs to be saved/restored:
+
TODO to figure out:
* LMIC.nwkKey (16 bytes)
 
* LMIC.artKey (16 bytes)
 
* LMIC.seqnoUp (32-bit number)
 
* LMIC.devaddr (4 bytes)
 
 
 
Logic:
 
* To start an OTAA join from scratch, use LMIC_startJoining();
 
* To continue from previous OTAA
 
** use LMIC_setSession() with parameters retrieved from LMIC_getSessionKeys() just after OTAA join;
 
** <s>LMIC.seqnoUp = savdata.seqnoUp;</s>
 
 
* What about the channel setup? The node connects using 3 frequencies, but receives a bigger list of frequencies during OTAA JOIN.
 
* What about the channel setup? The node connects using 3 frequencies, but receives a bigger list of frequencies during OTAA JOIN.
  
Line 132: Line 178:
 
A Java program subscribes to the MQTT stream, decodes the telemetry packets and forwards them to the luftdaten API.
 
A Java program subscribes to the MQTT stream, decodes the telemetry packets and forwards them to the luftdaten API.
 
There is no storage of measurement data in the Java application.
 
There is no storage of measurement data in the Java application.
 
I've already developed some Java code that publishes the measurement values towards luftdaten.info.
 
Also I've developed code before to subscribe to the TTN MQTT stream.
 
  
 
To receive data using mosquitto:
 
To receive data using mosquitto:

Revision as of 22:59, 25 April 2019

Project LoRaWAN dust Sensor
LoraWanDustSensor.jpg
LoRaWAN airborne particulate matter sensor
Status In progress
Contact bertrik
Last Update 2019-04-25


The idea

The idea is to create a system consisting of:

  • a sensor that measures airborne particulate matter and sends the measurement data using LoRa to TheThingsNetwork.
  • a forwarder application that collects the data from TTN and forwards it to luftdaten.info

This has been done before by other people, but it appears there is no universal solution. I am publishing all source code on github and will put up documentation on this wiki. Everyone invents their own payload format, something more universal like Cayenne LPP would be nice. However I could not find a way to encode particulate matter data using Cayenne, so I'll just invent my own payload format too.

A similar thing has been done by:

One thing in particular I'd like to do 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 communication/encryption keys instead of programmed specifically in each sensor node. Once the OTAA is done successfully, the node remembers the network id, device address, session keys, etc for future communication.

This makes it possible to have a single firmware image for all sensor nodes and it simplifies the setup:

  • you flash the node with a unified firmware
  • the node shows its unique id on the OLED
  • at the TTN console, you register a new device with the unique id
  • the sensor node receives encryption keys over the air automatically
  • done!

(idea: an ESP32 has a wifi connection too, perhaps registering the node can be done fully automatically, over wifi/internet)

Next steps

  • Investigate failing re-joins that seem to happen sometimes after the node has been online for a while
  • Implement a kind of schedule: turn the sds011 on, wait some time, take a measurement, turn it off, wait for some time
    • make this match the TTN send schedule? it's useless to do a measurement if we don't have TTN airtime to transmit it
  • Finish the Java software (MQTT listener, payload decoder, luftdaten forwarder)
    • I don't know what kind of id I can use towards Luftdaten, the regular convention is "esp8266-XXXX", where XXXX is the unique ESP id, but obviously my node is not an ESP8266.
  • display SDS011 serial number and date code on the screen

Links

Useful links for the TTGO LoRa board:

Hardware

The node is based on Arduino, in particular a TTGO ESP32 board with onboard SX1276 LoRa chip. The sensor is an SDS-011, just like in the luftdaten project. For humidity/temperature, I'd like to use a BME280.

NOTE: https://www.thethingsnetwork.org/community/berlin/post/warning-attention-users-of-ttgo21-v16-boards-labeled-t3_v16-on-pcb-battery-exploded-and-got-on-fire

Page with correct pinout of the ESP32 LoRa board.

Luftdaten uses a cycle time of 145 seconds for the SDS011.

Proposed hardware connections:

  • SDS011 5V to ESP32 5V
  • SDS011 GND to ESP32 GND
  • SDS011 TXD to ESP32 GPIO35 (maybe I can find two suitable pins close together)
  • SDS011 RXD to ESP32 GPIO25 (maybe I can find two suitable pins close together)
  • BME280 3V todo
  • BME280 SDA todo
  • BME280 SCL todo
  • BME280 GND todo

Software

Source code

Source code is hosted on github:

Common

Packet format

Proposed structure of packets transferred over LoRa:

  • PM10 value, encoded in units of 0.1 ug/m3: 2 bytes, big endian
  • PM2.5 value, encoded in units of 0.1 ug/m3: 2 bytes, big endian
  • temperature, encoded in units of 0.1 deg C: 2 bytes, signed big endian
  • relative humidity, encoded in units of 0.1%, 2 bytes, big endian

Total: 8 bytes

Not present value is 0xFFFF. Encoding is big endian.

Would be nice to use Cayenne for this, but I don't know if Cayenne has an id for particulate matter.

How other projects encode the data:

A smaller payload means less time in the air, smaller chance of collision with other LoRa packets and more packets per hour.

Node

Source code for the particulate matter measurement node can be found on the github page.

platformio

To compile and upload the code to the node, platformio is used.

To install platformio (example for Debian):

 sudo apt-get install python-pip
 sudo pip install platformio
 pio update

To compile and upload:

 pio run -t upload

design

The function of the node software is to collect data from the SDS011 (particulate matter) and BME280 (temperature/humidity) at regular intervals, encode this as a data packet and send it over LoRaWAN towards TheThingsNetwork.

For the LoRaWAN data connection, over-the-air activation (OTAA) is used. I use the following scheme, to keep administration to a minimum:

  • The Device EUI is derived from the ESP32 MAC address, the node shows this on its OLED
  • The App EUI is generated in the TTN console, it is the same for all nodes
  • The App Key is generated in the TTN console, it is the same for all nodes
  • The device is registered in the TTN console by the Device EUI (this doesn't happen automatically). Frame counter checks are disabled.
  • OTAA is done only once for each node. After that, the OTAA parameters are stored in (simulated) EEPROM.
    • A long press on the PRG button restarts the OTAA procedure
  • OTAA progress is shown on the OLED
  • If OTAA has been done successfully, the node restores the session parameters negotiated during OTAA on next bootup, so it can quickly resume sending data.
  • I'm NOT saving the upload frame counter (this would be preferable), just disable the feature in the TTN console.

TODO to figure out:

  • What about the channel setup? The node connects using 3 frequencies, but receives a bigger list of frequencies during OTAA JOIN.

I've seen the following from the node, receiving an ADR:

 40829907: engineUpdate, opmode=0x8
 40829935: EV_TXSTART
 40829939: engineUpdate, opmode=0x888
 40830013: TXMODE, freq=868300000, len=25, SF=11, BW=125, CR=4/5, IH=0
 40944876: setupRx1 txrxFlags 0x22 --> 01
 start single rx: now-rxtime: 5
 40945013: RXMODE_SINGLE, freq=868300000, SF=11, BW=125, CR=4/5, IH=0
 rxtimeout: entry: 40951170 rxtime: 40945001 entry-rxtime: 6169 now-entry: 5 rxtime-txend: 63524
 41005584: setupRx2 txrxFlags 0x1 --> 02
 start single rx: now-rxtime: 4
 41005720: RXMODE_SINGLE, freq=869525000, SF=9, BW=125, CR=4/5, IH=0
 41017003: process options (olen=0x5)
 41017012: LinkAdrReq: p1:11 chmap:00ff chpage:00 uprt:01 ans:86
 41017019: ??ack error ack=1 txCnt=0
 41017073: decodeFrame txrxFlags 0x2 --> 22
 41017312: Received downlink, window=RX2, port=-1, ack=1, txrxFlags=0x22
 41017708: EV_TXCOMPLETE (includes waiting for RX windows)
 41018027: engineUpdate, opmode=0x800

Backend

A Java program subscribes to the MQTT stream, decodes the telemetry packets and forwards them to the luftdaten API. There is no storage of measurement data in the Java application.

To receive data using mosquitto:

 mosquitto_sub -h eu.thethings.network -p 1883 -t +/devices/+/up -u particulatematter -P ttn-account-v2.cNaB2zO-nRiXaCUYmSAugzm-BaG_ZSHbEc5KgHNQFsk

Example upstream data:

 particulatematter/devices/ttgo_mac/up {"app_id":"particulatematter","dev_id":"ttgo_mac","hardware_serial":"000084B14CA4AE30","port":1,"counter":16,"payload_raw":"AAEALAAd/////w==","metadata":{"time":"2019-04-13T08:37:45.338427686Z","frequency":868.3,"modulation":"LORA","data_rate":"SF11BW125","airtime":823296000,"coding_rate":"4/5","gateways":[{"gtw_id":"eui-008000000000b8b6","timestamp":2000599916,"time":"2019-04-13T08:37:45.320735Z","channel":1,"rssi":-115,"snr":-3,"rf_chain":1,"latitude":52.0182,"longitude":4.70844,"altitude":27}]}}

Example downstream data:

 particulatematter/devices/ttgo_mac/events/down/sent {"payload":"YPUvASalGgEDEf8AAcqtmOw=","message":{"app_id":"particulatematter","dev_id":"ttgo_mac","port":0},"gateway_id":"eui-008000000000b8b6","config":{"modulation":"LORA","data_rate":"SF9BW125","airtime":164864000,"counter":282,"frequency":869525000,"power":27}}