915 -> 868
This commit is contained in:
parent
5a5986517c
commit
9981801c61
@ -7,7 +7,7 @@ void setup() {
|
|||||||
|
|
||||||
Serial.println("LoRa Receiver");
|
Serial.println("LoRa Receiver");
|
||||||
|
|
||||||
if (!LoRa.begin(915E6)) {
|
if (!LoRa.begin(868E6)) {
|
||||||
Serial.println("Starting LoRa failed!");
|
Serial.println("Starting LoRa failed!");
|
||||||
while (1);
|
while (1);
|
||||||
}
|
}
|
||||||
@ -17,9 +17,6 @@ void loop() {
|
|||||||
// try to parse packet
|
// try to parse packet
|
||||||
int packetSize = LoRa.parsePacket();
|
int packetSize = LoRa.parsePacket();
|
||||||
if (packetSize) {
|
if (packetSize) {
|
||||||
// received a packet
|
|
||||||
//Serial.print("Received packet '");
|
|
||||||
|
|
||||||
// read packet
|
// read packet
|
||||||
while (LoRa.available()) {
|
while (LoRa.available()) {
|
||||||
Serial.print((char)LoRa.read());
|
Serial.print((char)LoRa.read());
|
||||||
|
|||||||
@ -10,7 +10,7 @@ void setup() {
|
|||||||
|
|
||||||
Serial.println("LoRa Sender");
|
Serial.println("LoRa Sender");
|
||||||
|
|
||||||
if (!LoRa.begin(915E6)) {
|
if (!LoRa.begin(868E6)) {
|
||||||
Serial.println("Starting LoRa failed!");
|
Serial.println("Starting LoRa failed!");
|
||||||
while (1);
|
while (1);
|
||||||
}
|
}
|
||||||
@ -29,5 +29,5 @@ void loop() {
|
|||||||
|
|
||||||
counter++;
|
counter++;
|
||||||
|
|
||||||
delay(1000);
|
delay(5000);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user