e62ecb3ef4
* Added boards constants for LED_BUILTIN and KEY_BUILTIN Sources: * esp320: http://wiki.sweetpeas.se/index.php?title=ESP320#Developing_using_the_Arduino_IDE * esp32thing: https://cdn.sparkfun.com/assets/learn_tutorials/5/0/7/esp32-thing-schematic.pdf * espea32: https://github.com/AprilBrother/ESPea32/blob/master/hardware/ESPea32-schematic.pdf * hornbill32dev: https://github.com/ExploreEmbedded/Hornbill-ESP32-DEV/blob/master/Design%20Files/Schematic/Hornbill%20Devboard.pdf * lolin32: values from existing header * nano32: http://iot-bits.com/closer-look-esp32-nano32/ * node32s: https://github.com/lamloei/node32s-book/blob/master/ch01/node32s-schematic.pdf * Replace BUILTIN_LED constant with #define
27 lines
704 B
C
27 lines
704 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#define EXTERNAL_NUM_INTERRUPTS 11
|
|
#define NUM_DIGITAL_PINS 12
|
|
#define NUM_ANALOG_INPUTS 5
|
|
|
|
#define analogInputToDigitalPin(p) (((p)<20)?(esp32_adc2gpio[(p)]):-1)
|
|
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
|
|
#define digitalPinHasPWM(p) (p < 34)
|
|
|
|
static const uint8_t LED_BUILTIN = 5;
|
|
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
|
|
|
static const uint8_t TX = 1;
|
|
static const uint8_t RX = 3;
|
|
|
|
static const uint8_t SDA = 2;
|
|
static const uint8_t SCL = 14;
|
|
|
|
static const uint8_t SS = 15;
|
|
static const uint8_t MOSI = 13;
|
|
static const uint8_t MISO = 12;
|
|
static const uint8_t SCK = 14;
|
|
|
|
#endif /* Pins_Arduino_h */
|