An Arduino library for sending and receiving data using LoRa radios.
Go to file
Sandeep Mistry 21ace81a59 Some tweaks to new examples 2017-05-28 18:44:07 -04:00
examples Some tweaks to new examples 2017-05-28 18:44:07 -04:00
src Set Stream timeout to 0 in constructor 2017-05-28 18:44:07 -04:00
.travis.yml Symlink with library name 2016-10-22 17:54:50 -04:00
API.md Rename crc()/noCrc() to enableCrc()/disableCrc() 2017-05-28 17:39:10 -04:00
LICENSE Initial commit 2016-08-20 08:19:09 -04:00
README.md Update README.md 2017-04-23 20:31:43 -04:00
keywords.txt Rename crc()/noCrc() to enableCrc()/disableCrc() 2017-05-28 17:39:10 -04:00
library.properties Version 0.2.1 2017-04-23 20:40:56 -04:00

README.md

Arduino LoRa

Build Status

An Arduino library for sending and receiving data using LoRa radios.

Compatible Hardware

Semtech SX1276/77/78/79 wiring

Semtech SX1276/77/78/79 Arduino
VCC 3.3V
GND GND
SCK SCK
MISO MISO
MOSI MOSI
NSS 10
NRESET 9
DIO0 2

NSS, NRESET, and DIO0 pins can be changed by using LoRa.setPins(ss, reset, dio0). DIO0 pin is optional, it is only needed for receive callback mode. If DIO0 pin is used, it must be interrupt capable via attachInterrupt(...).

Installation

Using the Arduino IDE Library Manager

  1. Choose Sketch -> Include Library -> Manage Libraries...
  2. Type LoRa into the search box.
  3. Click the row to select the library.
  4. Click the Install button to install the library.

Using Git

cd ~/Documents/Arduino/libraries/
git clone https://github.com/sandeepmistry/arduino-LoRa LoRa

API

See API.md.

Examples

See examples folder.

License

This libary is licensed under the MIT Licence.