You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
591 B
C++
33 lines
591 B
C++
#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 RSS
|
|
//Serial.println(LoRa.packetRssi());
|
|
}
|
|
}
|