From a7d9b9351de33ee1165f311b8c6ca980015511b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grome=C5=A1?= Date: Sat, 22 Sep 2018 18:53:02 +0200 Subject: [PATCH] [RF69] Fixed incorrect variable name --- examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino b/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino index 4a8eba15..b86dee88 100644 --- a/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino +++ b/examples/RF69_Receive_Interrupt/RF69_Receive_Interrupt.ino @@ -19,7 +19,7 @@ void setup() { // set the function that will be called // when new packet is received - lora.setDio0Action(setFlag); + rf.setDio0Action(setFlag); // start listening for packets Serial.print(F("Starting to listen ... "));