Fix for TFT_eSPI and Adafruit libs (#1837)

see #1800
This commit is contained in:
tobozo 2018-09-17 21:21:51 +02:00 committed by Me No Dev
parent 3a8ac27a86
commit 18d260ec6e

View File

@ -9,11 +9,11 @@ static const uint8_t LED_BUILTIN = 5;
static const uint8_t _VBAT = 35; // battery voltage
static const uint8_t TF_CS = 4; // TF (Micro SD Card) CS pin
static const uint8_t TS_CS = 12; // Touch Screen CS pin
static const uint8_t TFT_CS = 14; // TFT CS pin
static const uint8_t TFT_LED = 32; // TFT backlight control pin
static const uint8_t TFT_RST = 33; // TFT reset pin
static const uint8_t TFT_DC = 27; // TFT DC pin
#define TF_CS 4 // TF (Micro SD Card) CS pin
#define TS_CS 12 // Touch Screen CS pin
#define TFT_CS 14 // TFT CS pin
#define TFT_LED 32 // TFT backlight control pin
#define TFT_RST 33 // TFT reset pin
#define TFT_DC 27 // TFT DC pin
#endif /* Pins_Arduino_h */