From 5e13817434e21ebeb37562069bff212bf191b13e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grome=C5=A1?= Date: Sat, 22 Sep 2018 17:49:37 +0200 Subject: [PATCH] [RF69] Fixed incorrect variable name --- .../RF69_Receive_Interrupt.ino | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino b/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino index f8ff0de1..4a8eba15 100644 --- a/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino +++ b/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino @@ -35,11 +35,11 @@ void setup() { // if needed, 'listen' mode can be disabled by calling // any of the following methods: // - // lora.standby() - // lora.sleep() - // lora.transmit(); - // lora.receive(); - // lora.scanChannel(); + // rf.standby() + // rf.sleep() + // rf.transmit(); + // rf.receive(); + // rf.scanChannel(); } // flag to indicate that a packet was received @@ -89,11 +89,6 @@ void loop() { // print data of the packet Serial.print("Data:\t\t\t"); 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,