[RF69] Fixed incorrect variable name

pull/13/head
Jan Gromeš 2018-09-22 17:49:37 +02:00
rodzic bae7d787fe
commit 5e13817434
1 zmienionych plików z 5 dodań i 10 usunięć

Wyświetl plik

@ -35,11 +35,11 @@ void setup() {
// if needed, 'listen' mode can be disabled by calling // if needed, 'listen' mode can be disabled by calling
// any of the following methods: // any of the following methods:
// //
// lora.standby() // rf.standby()
// lora.sleep() // rf.sleep()
// lora.transmit(); // rf.transmit();
// lora.receive(); // rf.receive();
// lora.scanChannel(); // rf.scanChannel();
} }
// flag to indicate that a packet was received // flag to indicate that a packet was received
@ -89,11 +89,6 @@ void loop() {
// print data of the packet // print data of the packet
Serial.print("Data:\t\t\t"); Serial.print("Data:\t\t\t");
Serial.println(str); Serial.println(str);
// print RSSI (Received Signal Strength Indicator)
Serial.print("RSSI:\t\t\t");
Serial.print(lora.lastPacketRSSI);
Serial.println(" dBm");
} }
// we're ready to receive more packets, // we're ready to receive more packets,