Initial commit of Arduino libraries
This commit is contained in:
30
LoRa/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino
Normal file
30
LoRa/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
LoRa register dump
|
||||
|
||||
This examples shows how to inspect and output the LoRa radio's
|
||||
registers on the Serial interface
|
||||
*/
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Dump Registers");
|
||||
|
||||
// override the default CS, reset, and IRQ pins (optional)
|
||||
// LoRa.setPins(7, 6, 1); // set CS, reset, IRQ pin
|
||||
|
||||
if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
LoRa.dumpRegisters(Serial);
|
||||
}
|
||||
|
||||
|
||||
void loop() {
|
||||
}
|
||||
|
||||
106
LoRa/examples/LoRaDuplex/LoRaDuplex.ino
Normal file
106
LoRa/examples/LoRaDuplex/LoRaDuplex.ino
Normal file
@@ -0,0 +1,106 @@
|
||||
/*
|
||||
LoRa Duplex communication
|
||||
|
||||
Sends a message every half second, and polls continually
|
||||
for new incoming messages. Implements a one-byte addressing scheme,
|
||||
with 0xFF as the broadcast address.
|
||||
|
||||
Uses readString() from Stream class to read payload. The Stream class'
|
||||
timeout may affect other functuons, like the radio's callback. For an
|
||||
|
||||
created 28 April 2017
|
||||
by Tom Igoe
|
||||
*/
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
const int csPin = 7; // LoRa radio chip select
|
||||
const int resetPin = 6; // LoRa radio reset
|
||||
const int irqPin = 1; // change for your board; must be a hardware interrupt pin
|
||||
|
||||
String outgoing; // outgoing message
|
||||
|
||||
byte msgCount = 0; // count of outgoing messages
|
||||
byte localAddress = 0xBB; // address of this device
|
||||
byte destination = 0xFF; // destination to send to
|
||||
long lastSendTime = 0; // last send time
|
||||
int interval = 2000; // interval between sends
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Duplex");
|
||||
|
||||
// override the default CS, reset, and IRQ pins (optional)
|
||||
LoRa.setPins(csPin, resetPin, irqPin);// set CS, reset, IRQ pin
|
||||
|
||||
if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
Serial.println("LoRa init succeeded.");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (millis() - lastSendTime > interval) {
|
||||
String message = "HeLoRa World!"; // send a message
|
||||
sendMessage(message);
|
||||
Serial.println("Sending " + message);
|
||||
lastSendTime = millis(); // timestamp the message
|
||||
interval = random(2000) + 1000; // 2-3 seconds
|
||||
}
|
||||
|
||||
// parse for a packet, and call onReceive with the result:
|
||||
onReceive(LoRa.parsePacket());
|
||||
}
|
||||
|
||||
void sendMessage(String outgoing) {
|
||||
LoRa.beginPacket(); // start packet
|
||||
LoRa.write(destination); // add destination address
|
||||
LoRa.write(localAddress); // add sender address
|
||||
LoRa.write(msgCount); // add message ID
|
||||
LoRa.write(outgoing.length()); // add payload length
|
||||
LoRa.print(outgoing); // add payload
|
||||
LoRa.endPacket(); // finish packet and send it
|
||||
msgCount++; // increment message ID
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
if (packetSize == 0) return; // if there's no packet, return
|
||||
|
||||
// read packet header bytes:
|
||||
int recipient = LoRa.read(); // recipient address
|
||||
byte sender = LoRa.read(); // sender address
|
||||
byte incomingMsgId = LoRa.read(); // incoming msg ID
|
||||
byte incomingLength = LoRa.read(); // incoming msg length
|
||||
|
||||
String incoming = "";
|
||||
|
||||
while (LoRa.available()) {
|
||||
incoming += (char)LoRa.read();
|
||||
}
|
||||
|
||||
if (incomingLength != incoming.length()) { // check length for error
|
||||
Serial.println("error: message length does not match length");
|
||||
return; // skip rest of function
|
||||
}
|
||||
|
||||
// if the recipient isn't this device or broadcast,
|
||||
if (recipient != localAddress && recipient != 0xFF) {
|
||||
Serial.println("This message is not for me.");
|
||||
return; // skip rest of function
|
||||
}
|
||||
|
||||
// if message is for this device, or broadcast, print details:
|
||||
Serial.println("Received from: 0x" + String(sender, HEX));
|
||||
Serial.println("Sent to: 0x" + String(recipient, HEX));
|
||||
Serial.println("Message ID: " + String(incomingMsgId));
|
||||
Serial.println("Message length: " + String(incomingLength));
|
||||
Serial.println("Message: " + incoming);
|
||||
Serial.println("RSSI: " + String(LoRa.packetRssi()));
|
||||
Serial.println("Snr: " + String(LoRa.packetSnr()));
|
||||
Serial.println();
|
||||
}
|
||||
|
||||
110
LoRa/examples/LoRaDuplexCallback/LoRaDuplexCallback.ino
Normal file
110
LoRa/examples/LoRaDuplexCallback/LoRaDuplexCallback.ino
Normal file
@@ -0,0 +1,110 @@
|
||||
/*
|
||||
LoRa Duplex communication wth callback
|
||||
|
||||
Sends a message every half second, and uses callback
|
||||
for new incoming messages. Implements a one-byte addressing scheme,
|
||||
with 0xFF as the broadcast address.
|
||||
|
||||
Note: while sending, LoRa radio is not listening for incoming messages.
|
||||
Note2: when using the callback method, you can't use any of the Stream
|
||||
functions that rely on the timeout, such as readString, parseInt(), etc.
|
||||
|
||||
created 28 April 2017
|
||||
by Tom Igoe
|
||||
*/
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
#ifdef ARDUINO_SAMD_MKRWAN1300
|
||||
#error "This example is not compatible with the Arduino MKR WAN 1300 board!"
|
||||
#endif
|
||||
|
||||
const int csPin = 7; // LoRa radio chip select
|
||||
const int resetPin = 6; // LoRa radio reset
|
||||
const int irqPin = 1; // change for your board; must be a hardware interrupt pin
|
||||
|
||||
String outgoing; // outgoing message
|
||||
byte msgCount = 0; // count of outgoing messages
|
||||
byte localAddress = 0xBB; // address of this device
|
||||
byte destination = 0xFF; // destination to send to
|
||||
long lastSendTime = 0; // last send time
|
||||
int interval = 2000; // interval between sends
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Duplex with callback");
|
||||
|
||||
// override the default CS, reset, and IRQ pins (optional)
|
||||
LoRa.setPins(csPin, resetPin, irqPin);// set CS, reset, IRQ pin
|
||||
|
||||
if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
LoRa.onReceive(onReceive);
|
||||
LoRa.receive();
|
||||
Serial.println("LoRa init succeeded.");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (millis() - lastSendTime > interval) {
|
||||
String message = "HeLoRa World!"; // send a message
|
||||
sendMessage(message);
|
||||
Serial.println("Sending " + message);
|
||||
lastSendTime = millis(); // timestamp the message
|
||||
interval = random(2000) + 1000; // 2-3 seconds
|
||||
LoRa.receive(); // go back into receive mode
|
||||
}
|
||||
}
|
||||
|
||||
void sendMessage(String outgoing) {
|
||||
LoRa.beginPacket(); // start packet
|
||||
LoRa.write(destination); // add destination address
|
||||
LoRa.write(localAddress); // add sender address
|
||||
LoRa.write(msgCount); // add message ID
|
||||
LoRa.write(outgoing.length()); // add payload length
|
||||
LoRa.print(outgoing); // add payload
|
||||
LoRa.endPacket(); // finish packet and send it
|
||||
msgCount++; // increment message ID
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
if (packetSize == 0) return; // if there's no packet, return
|
||||
|
||||
// read packet header bytes:
|
||||
int recipient = LoRa.read(); // recipient address
|
||||
byte sender = LoRa.read(); // sender address
|
||||
byte incomingMsgId = LoRa.read(); // incoming msg ID
|
||||
byte incomingLength = LoRa.read(); // incoming msg length
|
||||
|
||||
String incoming = ""; // payload of packet
|
||||
|
||||
while (LoRa.available()) { // can't use readString() in callback, so
|
||||
incoming += (char)LoRa.read(); // add bytes one by one
|
||||
}
|
||||
|
||||
if (incomingLength != incoming.length()) { // check length for error
|
||||
Serial.println("error: message length does not match length");
|
||||
return; // skip rest of function
|
||||
}
|
||||
|
||||
// if the recipient isn't this device or broadcast,
|
||||
if (recipient != localAddress && recipient != 0xFF) {
|
||||
Serial.println("This message is not for me.");
|
||||
return; // skip rest of function
|
||||
}
|
||||
|
||||
// if message is for this device, or broadcast, print details:
|
||||
Serial.println("Received from: 0x" + String(sender, HEX));
|
||||
Serial.println("Sent to: 0x" + String(recipient, HEX));
|
||||
Serial.println("Message ID: " + String(incomingMsgId));
|
||||
Serial.println("Message length: " + String(incomingLength));
|
||||
Serial.println("Message: " + incoming);
|
||||
Serial.println("RSSI: " + String(LoRa.packetRssi()));
|
||||
Serial.println("Snr: " + String(LoRa.packetSnr()));
|
||||
Serial.println();
|
||||
}
|
||||
|
||||
32
LoRa/examples/LoRaReceiver/LoRaReceiver.ino
Normal file
32
LoRa/examples/LoRaReceiver/LoRaReceiver.ino
Normal file
@@ -0,0 +1,32 @@
|
||||
#include <SPI.h>
|
||||
#include <LoRa.h>
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Receiver");
|
||||
|
||||
if (!LoRa.begin(915E6)) {
|
||||
Serial.println("Starting LoRa failed!");
|
||||
while (1);
|
||||
}
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// try to parse packet
|
||||
int packetSize = LoRa.parsePacket();
|
||||
if (packetSize) {
|
||||
// received a packet
|
||||
Serial.print("Received packet '");
|
||||
|
||||
// read packet
|
||||
while (LoRa.available()) {
|
||||
Serial.print((char)LoRa.read());
|
||||
}
|
||||
|
||||
// print RSSI of packet
|
||||
Serial.print("' with RSSI ");
|
||||
Serial.println(LoRa.packetRssi());
|
||||
}
|
||||
}
|
||||
45
LoRa/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino
Normal file
45
LoRa/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino
Normal file
@@ -0,0 +1,45 @@
|
||||
#include <SPI.h>
|
||||
#include <LoRa.h>
|
||||
|
||||
#ifdef ARDUINO_SAMD_MKRWAN1300
|
||||
#error "This example is not compatible with the Arduino MKR WAN 1300 board!"
|
||||
#endif
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Receiver Callback");
|
||||
|
||||
if (!LoRa.begin(915E6)) {
|
||||
Serial.println("Starting LoRa failed!");
|
||||
while (1);
|
||||
}
|
||||
|
||||
// Uncomment the next line to disable the default AGC and set LNA gain, values between 1 - 6 are supported
|
||||
// LoRa.setGain(6);
|
||||
|
||||
// register the receive callback
|
||||
LoRa.onReceive(onReceive);
|
||||
|
||||
// put the radio into receive mode
|
||||
LoRa.receive();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
// received a packet
|
||||
Serial.print("Received packet '");
|
||||
|
||||
// read packet
|
||||
for (int i = 0; i < packetSize; i++) {
|
||||
Serial.print((char)LoRa.read());
|
||||
}
|
||||
|
||||
// print RSSI of packet
|
||||
Serial.print("' with RSSI ");
|
||||
Serial.println(LoRa.packetRssi());
|
||||
}
|
||||
31
LoRa/examples/LoRaSender/LoRaSender.ino
Normal file
31
LoRa/examples/LoRaSender/LoRaSender.ino
Normal file
@@ -0,0 +1,31 @@
|
||||
#include <SPI.h>
|
||||
#include <LoRa.h>
|
||||
|
||||
int counter = 0;
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Sender");
|
||||
|
||||
if (!LoRa.begin(915E6)) {
|
||||
Serial.println("Starting LoRa failed!");
|
||||
while (1);
|
||||
}
|
||||
}
|
||||
|
||||
void loop() {
|
||||
Serial.print("Sending packet: ");
|
||||
Serial.println(counter);
|
||||
|
||||
// send packet
|
||||
LoRa.beginPacket();
|
||||
LoRa.print("hello ");
|
||||
LoRa.print(counter);
|
||||
LoRa.endPacket();
|
||||
|
||||
counter++;
|
||||
|
||||
delay(5000);
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
#include <SPI.h>
|
||||
#include <LoRa.h>
|
||||
|
||||
int counter = 0;
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Sender non-blocking");
|
||||
|
||||
if (!LoRa.begin(915E6)) {
|
||||
Serial.println("Starting LoRa failed!");
|
||||
while (1);
|
||||
}
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// wait until the radio is ready to send a packet
|
||||
while (LoRa.beginPacket() == 0) {
|
||||
Serial.print("waiting for radio ... ");
|
||||
delay(100);
|
||||
}
|
||||
|
||||
Serial.print("Sending packet non-blocking: ");
|
||||
Serial.println(counter);
|
||||
|
||||
// send in async / non-blocking mode
|
||||
LoRa.beginPacket();
|
||||
LoRa.print("hello ");
|
||||
LoRa.print(counter);
|
||||
LoRa.endPacket(true); // true = async / non-blocking mode
|
||||
|
||||
counter++;
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
#include <SPI.h>
|
||||
#include <LoRa.h>
|
||||
|
||||
int counter = 0;
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Sender non-blocking Callback");
|
||||
|
||||
if (!LoRa.begin(915E6)) {
|
||||
Serial.println("Starting LoRa failed!");
|
||||
while (1);
|
||||
}
|
||||
|
||||
LoRa.onTxDone(onTxDone);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (runEvery(5000)) { // repeat every 5000 millis
|
||||
|
||||
Serial.print("Sending packet non-blocking: ");
|
||||
Serial.println(counter);
|
||||
|
||||
// send in async / non-blocking mode
|
||||
LoRa.beginPacket();
|
||||
LoRa.print("hello ");
|
||||
LoRa.print(counter);
|
||||
LoRa.endPacket(true); // true = async / non-blocking mode
|
||||
|
||||
counter++;
|
||||
}
|
||||
}
|
||||
|
||||
void onTxDone() {
|
||||
Serial.println("TxDone");
|
||||
}
|
||||
|
||||
boolean runEvery(unsigned long interval)
|
||||
{
|
||||
static unsigned long previousMillis = 0;
|
||||
unsigned long currentMillis = millis();
|
||||
if (currentMillis - previousMillis >= interval)
|
||||
{
|
||||
previousMillis = currentMillis;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
87
LoRa/examples/LoRaSetSpread/LoRaSetSpread.ino
Normal file
87
LoRa/examples/LoRaSetSpread/LoRaSetSpread.ino
Normal file
@@ -0,0 +1,87 @@
|
||||
/*
|
||||
LoRa Duplex communication with Spreading Factor
|
||||
|
||||
Sends a message every half second, and polls continually
|
||||
for new incoming messages. Sets the LoRa radio's spreading factor.
|
||||
|
||||
Spreading factor affects how far apart the radio's transmissions
|
||||
are, across the available bandwidth. Radios with different spreading
|
||||
factors will not receive each other's transmissions. This is one way you
|
||||
can filter out radios you want to ignore, without making an addressing scheme.
|
||||
|
||||
Spreading factor affects reliability of transmission at high rates, however,
|
||||
so avoid a hugh spreading factor when you're sending continually.
|
||||
|
||||
See the Semtech datasheet, http://www.semtech.com/images/datasheet/sx1276.pdf
|
||||
for more on Spreading Factor.
|
||||
|
||||
created 28 April 2017
|
||||
by Tom Igoe
|
||||
*/
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
const int csPin = 7; // LoRa radio chip select
|
||||
const int resetPin = 6; // LoRa radio reset
|
||||
const int irqPin = 1; // change for your board; must be a hardware interrupt pin
|
||||
|
||||
byte msgCount = 0; // count of outgoing messages
|
||||
int interval = 2000; // interval between sends
|
||||
long lastSendTime = 0; // time of last packet send
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Duplex - Set spreading factor");
|
||||
|
||||
// override the default CS, reset, and IRQ pins (optional)
|
||||
LoRa.setPins(csPin, resetPin, irqPin); // set CS, reset, IRQ pin
|
||||
|
||||
if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
LoRa.setSpreadingFactor(8); // ranges from 6-12,default 7 see API docs
|
||||
Serial.println("LoRa init succeeded.");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (millis() - lastSendTime > interval) {
|
||||
String message = "HeLoRa World! "; // send a message
|
||||
message += msgCount;
|
||||
sendMessage(message);
|
||||
Serial.println("Sending " + message);
|
||||
lastSendTime = millis(); // timestamp the message
|
||||
interval = random(2000) + 1000; // 2-3 seconds
|
||||
msgCount++;
|
||||
}
|
||||
|
||||
// parse for a packet, and call onReceive with the result:
|
||||
onReceive(LoRa.parsePacket());
|
||||
}
|
||||
|
||||
void sendMessage(String outgoing) {
|
||||
LoRa.beginPacket(); // start packet
|
||||
LoRa.print(outgoing); // add payload
|
||||
LoRa.endPacket(); // finish packet and send it
|
||||
msgCount++; // increment message ID
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
if (packetSize == 0) return; // if there's no packet, return
|
||||
|
||||
// read packet header bytes:
|
||||
String incoming = "";
|
||||
|
||||
while (LoRa.available()) {
|
||||
incoming += (char)LoRa.read();
|
||||
}
|
||||
|
||||
Serial.println("Message: " + incoming);
|
||||
Serial.println("RSSI: " + String(LoRa.packetRssi()));
|
||||
Serial.println("Snr: " + String(LoRa.packetSnr()));
|
||||
Serial.println();
|
||||
}
|
||||
|
||||
82
LoRa/examples/LoRaSetSyncWord/LoRaSetSyncWord.ino
Normal file
82
LoRa/examples/LoRaSetSyncWord/LoRaSetSyncWord.ino
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
LoRa Duplex communication with Sync Word
|
||||
|
||||
Sends a message every half second, and polls continually
|
||||
for new incoming messages. Sets the LoRa radio's Sync Word.
|
||||
|
||||
Spreading factor is basically the radio's network ID. Radios with different
|
||||
Sync Words will not receive each other's transmissions. This is one way you
|
||||
can filter out radios you want to ignore, without making an addressing scheme.
|
||||
|
||||
See the Semtech datasheet, http://www.semtech.com/images/datasheet/sx1276.pdf
|
||||
for more on Sync Word.
|
||||
|
||||
created 28 April 2017
|
||||
by Tom Igoe
|
||||
*/
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
const int csPin = 7; // LoRa radio chip select
|
||||
const int resetPin = 6; // LoRa radio reset
|
||||
const int irqPin = 1; // change for your board; must be a hardware interrupt pin
|
||||
|
||||
byte msgCount = 0; // count of outgoing messages
|
||||
int interval = 2000; // interval between sends
|
||||
long lastSendTime = 0; // time of last packet send
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Duplex - Set sync word");
|
||||
|
||||
// override the default CS, reset, and IRQ pins (optional)
|
||||
LoRa.setPins(csPin, resetPin, irqPin);// set CS, reset, IRQ pin
|
||||
|
||||
if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
LoRa.setSyncWord(0xF3); // ranges from 0-0xFF, default 0x34, see API docs
|
||||
Serial.println("LoRa init succeeded.");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (millis() - lastSendTime > interval) {
|
||||
String message = "HeLoRa World! "; // send a message
|
||||
message += msgCount;
|
||||
sendMessage(message);
|
||||
Serial.println("Sending " + message);
|
||||
lastSendTime = millis(); // timestamp the message
|
||||
interval = random(2000) + 1000; // 2-3 seconds
|
||||
msgCount++;
|
||||
}
|
||||
|
||||
// parse for a packet, and call onReceive with the result:
|
||||
onReceive(LoRa.parsePacket());
|
||||
}
|
||||
|
||||
void sendMessage(String outgoing) {
|
||||
LoRa.beginPacket(); // start packet
|
||||
LoRa.print(outgoing); // add payload
|
||||
LoRa.endPacket(); // finish packet and send it
|
||||
msgCount++; // increment message ID
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
if (packetSize == 0) return; // if there's no packet, return
|
||||
|
||||
// read packet header bytes:
|
||||
String incoming = "";
|
||||
|
||||
while (LoRa.available()) {
|
||||
incoming += (char)LoRa.read();
|
||||
}
|
||||
|
||||
Serial.println("Message: " + incoming);
|
||||
Serial.println("RSSI: " + String(LoRa.packetRssi()));
|
||||
Serial.println("Snr: " + String(LoRa.packetSnr()));
|
||||
Serial.println();
|
||||
}
|
||||
|
||||
117
LoRa/examples/LoRaSimpleGateway/LoRaSimpleGateway.ino
Normal file
117
LoRa/examples/LoRaSimpleGateway/LoRaSimpleGateway.ino
Normal file
@@ -0,0 +1,117 @@
|
||||
/*
|
||||
LoRa Simple Gateway/Node Exemple
|
||||
|
||||
This code uses InvertIQ function to create a simple Gateway/Node logic.
|
||||
|
||||
Gateway - Sends messages with enableInvertIQ()
|
||||
- Receives messages with disableInvertIQ()
|
||||
|
||||
Node - Sends messages with disableInvertIQ()
|
||||
- Receives messages with enableInvertIQ()
|
||||
|
||||
With this arrangement a Gateway never receive messages from another Gateway
|
||||
and a Node never receive message from another Node.
|
||||
Only Gateway to Node and vice versa.
|
||||
|
||||
This code receives messages and sends a message every second.
|
||||
|
||||
InvertIQ function basically invert the LoRa I and Q signals.
|
||||
|
||||
See the Semtech datasheet, http://www.semtech.com/images/datasheet/sx1276.pdf
|
||||
for more on InvertIQ register 0x33.
|
||||
|
||||
created 05 August 2018
|
||||
by Luiz H. Cassettari
|
||||
*/
|
||||
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
const long frequency = 915E6; // LoRa Frequency
|
||||
|
||||
const int csPin = 10; // LoRa radio chip select
|
||||
const int resetPin = 9; // LoRa radio reset
|
||||
const int irqPin = 2; // change for your board; must be a hardware interrupt pin
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
LoRa.setPins(csPin, resetPin, irqPin);
|
||||
|
||||
if (!LoRa.begin(frequency)) {
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
Serial.println("LoRa init succeeded.");
|
||||
Serial.println();
|
||||
Serial.println("LoRa Simple Gateway");
|
||||
Serial.println("Only receive messages from nodes");
|
||||
Serial.println("Tx: invertIQ enable");
|
||||
Serial.println("Rx: invertIQ disable");
|
||||
Serial.println();
|
||||
|
||||
LoRa.onReceive(onReceive);
|
||||
LoRa.onTxDone(onTxDone);
|
||||
LoRa_rxMode();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (runEvery(5000)) { // repeat every 5000 millis
|
||||
|
||||
String message = "HeLoRa World! ";
|
||||
message += "I'm a Gateway! ";
|
||||
message += millis();
|
||||
|
||||
LoRa_sendMessage(message); // send a message
|
||||
|
||||
Serial.println("Send Message!");
|
||||
}
|
||||
}
|
||||
|
||||
void LoRa_rxMode(){
|
||||
LoRa.disableInvertIQ(); // normal mode
|
||||
LoRa.receive(); // set receive mode
|
||||
}
|
||||
|
||||
void LoRa_txMode(){
|
||||
LoRa.idle(); // set standby mode
|
||||
LoRa.enableInvertIQ(); // active invert I and Q signals
|
||||
}
|
||||
|
||||
void LoRa_sendMessage(String message) {
|
||||
LoRa_txMode(); // set tx mode
|
||||
LoRa.beginPacket(); // start packet
|
||||
LoRa.print(message); // add payload
|
||||
LoRa.endPacket(true); // finish packet and send it
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
String message = "";
|
||||
|
||||
while (LoRa.available()) {
|
||||
message += (char)LoRa.read();
|
||||
}
|
||||
|
||||
Serial.print("Gateway Receive: ");
|
||||
Serial.println(message);
|
||||
}
|
||||
|
||||
void onTxDone() {
|
||||
Serial.println("TxDone");
|
||||
LoRa_rxMode();
|
||||
}
|
||||
|
||||
boolean runEvery(unsigned long interval)
|
||||
{
|
||||
static unsigned long previousMillis = 0;
|
||||
unsigned long currentMillis = millis();
|
||||
if (currentMillis - previousMillis >= interval)
|
||||
{
|
||||
previousMillis = currentMillis;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
117
LoRa/examples/LoRaSimpleNode/LoRaSimpleNode.ino
Normal file
117
LoRa/examples/LoRaSimpleNode/LoRaSimpleNode.ino
Normal file
@@ -0,0 +1,117 @@
|
||||
/*
|
||||
LoRa Simple Gateway/Node Exemple
|
||||
|
||||
This code uses InvertIQ function to create a simple Gateway/Node logic.
|
||||
|
||||
Gateway - Sends messages with enableInvertIQ()
|
||||
- Receives messages with disableInvertIQ()
|
||||
|
||||
Node - Sends messages with disableInvertIQ()
|
||||
- Receives messages with enableInvertIQ()
|
||||
|
||||
With this arrangement a Gateway never receive messages from another Gateway
|
||||
and a Node never receive message from another Node.
|
||||
Only Gateway to Node and vice versa.
|
||||
|
||||
This code receives messages and sends a message every second.
|
||||
|
||||
InvertIQ function basically invert the LoRa I and Q signals.
|
||||
|
||||
See the Semtech datasheet, http://www.semtech.com/images/datasheet/sx1276.pdf
|
||||
for more on InvertIQ register 0x33.
|
||||
|
||||
created 05 August 2018
|
||||
by Luiz H. Cassettari
|
||||
*/
|
||||
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
const long frequency = 915E6; // LoRa Frequency
|
||||
|
||||
const int csPin = 10; // LoRa radio chip select
|
||||
const int resetPin = 9; // LoRa radio reset
|
||||
const int irqPin = 2; // change for your board; must be a hardware interrupt pin
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
LoRa.setPins(csPin, resetPin, irqPin);
|
||||
|
||||
if (!LoRa.begin(frequency)) {
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
Serial.println("LoRa init succeeded.");
|
||||
Serial.println();
|
||||
Serial.println("LoRa Simple Node");
|
||||
Serial.println("Only receive messages from gateways");
|
||||
Serial.println("Tx: invertIQ disable");
|
||||
Serial.println("Rx: invertIQ enable");
|
||||
Serial.println();
|
||||
|
||||
LoRa.onReceive(onReceive);
|
||||
LoRa.onTxDone(onTxDone);
|
||||
LoRa_rxMode();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (runEvery(1000)) { // repeat every 1000 millis
|
||||
|
||||
String message = "HeLoRa World! ";
|
||||
message += "I'm a Node! ";
|
||||
message += millis();
|
||||
|
||||
LoRa_sendMessage(message); // send a message
|
||||
|
||||
Serial.println("Send Message!");
|
||||
}
|
||||
}
|
||||
|
||||
void LoRa_rxMode(){
|
||||
LoRa.enableInvertIQ(); // active invert I and Q signals
|
||||
LoRa.receive(); // set receive mode
|
||||
}
|
||||
|
||||
void LoRa_txMode(){
|
||||
LoRa.idle(); // set standby mode
|
||||
LoRa.disableInvertIQ(); // normal mode
|
||||
}
|
||||
|
||||
void LoRa_sendMessage(String message) {
|
||||
LoRa_txMode(); // set tx mode
|
||||
LoRa.beginPacket(); // start packet
|
||||
LoRa.print(message); // add payload
|
||||
LoRa.endPacket(true); // finish packet and send it
|
||||
}
|
||||
|
||||
void onReceive(int packetSize) {
|
||||
String message = "";
|
||||
|
||||
while (LoRa.available()) {
|
||||
message += (char)LoRa.read();
|
||||
}
|
||||
|
||||
Serial.print("Node Receive: ");
|
||||
Serial.println(message);
|
||||
}
|
||||
|
||||
void onTxDone() {
|
||||
Serial.println("TxDone");
|
||||
LoRa_rxMode();
|
||||
}
|
||||
|
||||
boolean runEvery(unsigned long interval)
|
||||
{
|
||||
static unsigned long previousMillis = 0;
|
||||
unsigned long currentMillis = millis();
|
||||
if (currentMillis - previousMillis >= interval)
|
||||
{
|
||||
previousMillis = currentMillis;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user