Difference between revisions of "LoRa research"

From Woodland Harvest Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
LoRa technology was developed by a company called Semtech and it is a new wireless protocol designed specifically for long-range, low-power communications. LoRa stands for Long Range Radio and is mainly targeted for M2M and IoT networks. This technology will enable public or multi-tenant networks to connect a number of applications running on the same network [^digikey-lora].
 
LoRa technology was developed by a company called Semtech and it is a new wireless protocol designed specifically for long-range, low-power communications. LoRa stands for Long Range Radio and is mainly targeted for M2M and IoT networks. This technology will enable public or multi-tenant networks to connect a number of applications running on the same network [^digikey-lora].
  
For different types of arduino, we can use a long range transciever LoRa shield called the [^dragino-lora].
+
For different types of Arduino, we can use a long-range transceiver LoRa shield called the [^dragino-lora].
  
 
## Set up LoRa on your laptop
 
## Set up LoRa on your laptop
Line 10: Line 10:
  
 
3. In the (example) sketch, make sure to assign LED to something other than 9. If set to 9, the restart of the LoRa board will be triggered.
 
3. In the (example) sketch, make sure to assign LED to something other than 9. If set to 9, the restart of the LoRa board will be triggered.
 +
 +
## LoRa WAN
 +
 +
[Different device types - Class A,B,C - Youtube tutorial](https://www.youtube.com/watch?v=ShJ5RERof5I)</br>
 +
[Fresnel zone](https://www.youtube.com/watch?v=HWOivbJjw7s)</br>
 +
[EIRP and ERP](https://www.youtube.com/watch?v=LEucMthGJtc)</br>
 +
[RSSI and SNR](https://www.youtube.com/watch?v=RpTw1fGhI68)</br>
 +
[LoRa Packet Format, Time on Air and Adaptive Data Rate](https://www.youtube.com/watch?v=C_Rh5GSENA4)</br>
 +
[Different types of LoRa chips](https://www.youtube.com/watch?v=0FaFVD5fedc&list=PLmL13yqb6OxdeOi97EvI8QeO8o-PqeQ0g&index=18)</br>
 +
[LoRa End Node Libraries](https://www.youtube.com/watch?v=0dnnqToK28A&list=PLmL13yqb6OxdeOi97EvI8QeO8o-PqeQ0g&index=20)
 +
  
 
## Nanopb protocol buffer
 
## Nanopb protocol buffer

Revision as of 16:39, 16 March 2021

LoRa technology was developed by a company called Semtech and it is a new wireless protocol designed specifically for long-range, low-power communications. LoRa stands for Long Range Radio and is mainly targeted for M2M and IoT networks. This technology will enable public or multi-tenant networks to connect a number of applications running on the same network 1.

For different types of Arduino, we can use a long-range transceiver LoRa shield called the 2.

Set up LoRa on your laptop

  1. Get the RadioHead library from http://www.airspayce.com/mikem/arduino/RadioHead/. There is a link with the ending .zip that you can click to download.
  2. Add the library to your Arduino IDE. Once added, you can open the example file under examples --> radiohead.
  3. In the (example) sketch, make sure to assign LED to something other than 9. If set to 9, the restart of the LoRa board will be triggered.

LoRa WAN

Different device types - Class A,B,C - Youtube tutorial
Fresnel zone
EIRP and ERP
RSSI and SNR
LoRa Packet Format, Time on Air and Adaptive Data Rate
Different types of LoRa chips
LoRa End Node Libraries

Nanopb protocol buffer

Protocol buffers are a data serialization format from Google which are supported in multiple programming languages. Protocol Buffers messages are encoded in a binary format, which means they are not human-readable unless we decode them back to a readable format. One of the main advantages of using Protocol Buffers is that the serialization and deserialization process is fast and the generated messages are small.3 Nanopb is a version of the protocol buffer in the programming language C, which works well with 32 bit systems such as the Arduino.

This dfrobot tutorial leads you through installing the Nanopb library and compiler on your laptop. You can use this online proto buffer decoder to decode proto buffer messages that were encoded for sending.

The Nanopb library needs a .proto file that clarifies the variables that will be serialized. Once, the different types of variables are serialized or encoded, they are unreadable for humans in a binary format. This number is expressed as hexadecimal that can easily be sent over wireless radio as it requires small amounts of data.

The encoded message needs to be decoded on the side of the receiver. The receiver also needs to know the specific variable types in the message to properly decode the message. The abovementioned tutorial only walks you through setting up the Nanopb environemnt on your laptio and encoding a message. A different tutorial by dfrobot shows how to encode and decode messages between an Arduino and ESP32.

References