This commit is contained in:
2022-09-15 16:17:37 +02:00
parent 40a6a58e72
commit f2806ccce1
4 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,31 @@
#include <SPI.h>
#include <LoRa.h>
void setup() {
Serial.begin(9600);
while (!Serial);
Serial.println("Applejack is best pony ! Received by Pauline Srifi ~");
if (!LoRa.begin(864E6)) {
Serial.println("Starting LoRa failed!");
while (1);
}
}
void loop() {
// try to parse packet
int packetSize = LoRa.parsePacket();
if (packetSize) {
// received a packet
// read packet
while (LoRa.available()) {
Serial.print((char)LoRa.read());
}
// print RSSI of packet
//Serial.print("' with RSSI ");
//Serial.println(LoRa.packetRssi());
}
}