Added SPI bus pins (#1454)

Added SPI bus pins and tested them as well
This commit is contained in:
timkoers 2018-06-18 17:26:22 +02:00 committed by Me No Dev
parent 83810fa156
commit c63d746a06

View File

@ -20,6 +20,11 @@ static const uint8_t KEY_BUILTIN = 34;
static const uint8_t SCL = 16; // This is pin 11
static const uint8_t SDA = 17; // This is pin 12
static const uint8_t SS = 5;
static const uint8_t MOSI = 23;
static const uint8_t MISO = 19;
static const uint8_t SCK = 18;
static const uint8_t TX = 1;
static const uint8_t RX = 3;