mirror of
https://github.com/Fishwaldo/WLED.git
synced 2025-07-06 13:08:59 +00:00
FIX IR_PIN to IRPIN (#1394)
...in cfg.cpp the if statement used "IRPIN" (which is consistent to all other PIN names), but on the declaration-side "IR_PIN" was used. Changed all occurences of "IR_PIN" to "IRPIN".
This commit is contained in:
parent
825cc096c0
commit
c01dd232c5
7 changed files with 12 additions and 12 deletions
|
@ -24,8 +24,8 @@
|
|||
#define LEDPIN 1 // Legacy pin def required by some other portions of code. This pin is not used do drive LEDs.
|
||||
#endif
|
||||
|
||||
#ifndef IR_PIN
|
||||
#define IR_PIN -1 //infrared pin (-1 to disable) MagicHome: 4, H801 Wifi: 0
|
||||
#ifndef IRPIN
|
||||
#define IRPIN -1 //infrared pin (-1 to disable) MagicHome: 4, H801 Wifi: 0
|
||||
#endif
|
||||
|
||||
#ifndef RLYPIN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue