1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-24 19:42:27 +03:00

Pulldown only possible for in 16. ( see #478 )

rename define to INPUT_PULLDOWN_16 to make it clear
This commit is contained in:
Markus Sattler
2015-07-01 17:56:19 +02:00
committed by Ivan Grokhotkov
parent 715d4ab722
commit ddf03fc92b
2 changed files with 4 additions and 6 deletions

View File

@ -48,7 +48,7 @@ void yield(void);
//GPIO FUNCTIONS
#define INPUT 0x00
#define INPUT_PULLUP 0x02
#define INPUT_PULLDOWN 0x04
#define INPUT_PULLDOWN_16 0x04 // PULLDOWN only possible for pin16
#define OUTPUT 0x01
#define OUTPUT_OPEN_DRAIN 0x03
#define WAKEUP_PULLUP 0x05