From ce1d8e428a2f4c04fde4fc3c9991820317b322f5 Mon Sep 17 00:00:00 2001 From: 1technophile Date: Sat, 23 Sep 2017 21:05:48 +0200 Subject: [PATCH] correct arduino pins according schema --- config_IR.h | 2 +- config_RF.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config_IR.h b/config_IR.h index 6a340f678a..292b173b8e 100644 --- a/config_IR.h +++ b/config_IR.h @@ -72,7 +72,7 @@ #define IR_RECEIVER_PIN 2 #define IR_EMITTER_PIN 16 #else - #define IR_RECEIVER_PIN 1 + #define IR_RECEIVER_PIN 0 // 0 = D2 on arduino #define IR_EMITTER_PIN D9 #endif diff --git a/config_RF.h b/config_RF.h index fe7458b958..b1cc476aca 100644 --- a/config_RF.h +++ b/config_RF.h @@ -70,7 +70,7 @@ RF supported protocols #else //IMPORTANT NOTE: On arduino UNO connect IR emitter pin to D9 , comment #define IR_USE_TIMER2 and uncomment #define IR_USE_TIMER1 on library IRremote/IRremoteInt.h so as to free pin D3 for RF RECEIVER PIN //RF PIN definition - #define RF_RECEIVER_PIN 0 //0 = D2 on arduino + #define RF_RECEIVER_PIN 1 //1 = D3 on arduino #define RF_EMITTER_PIN 4 //4 = D4 on arduino #endif