From ce7979c1ef01ed616008127abe860d4032536a12 Mon Sep 17 00:00:00 2001 From: Felix Rusu Date: Tue, 17 Mar 2015 15:50:28 -0400 Subject: [PATCH] Update Node.ino --- Examples/Node/Node.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Examples/Node/Node.ino b/Examples/Node/Node.ino index 028c84b..2ea21aa 100644 --- a/Examples/Node/Node.ino +++ b/Examples/Node/Node.ino @@ -17,7 +17,6 @@ //#define FREQUENCY RF69_915MHZ #define ENCRYPTKEY "sampleEncryptKey" //exactly the same 16 characters/bytes on all nodes! //#define IS_RFM69HW //uncomment only for RFM69HW! Leave out if you have RFM69W! -#define ACK_TIME 30 // max # of ms to wait for an ack #ifdef __AVR_ATmega1284P__ #define LED 15 // Moteino MEGAs have LEDs on D15 #define FLASH_SS 23 // and FLASH SS on D23 @@ -169,4 +168,4 @@ void Blink(byte PIN, int DELAY_MS) digitalWrite(PIN,HIGH); delay(DELAY_MS); digitalWrite(PIN,LOW); -} \ No newline at end of file +}