#include <Adafruit_ILI9341.h>
#define TFT_CS 2
#define TFT_DC 3
#define TFT_RST 4
Adafruit_ILI9341 tft = Adafruit_ILI9341(static_cast<uint8_t>(TFT_CS), static_cast<uint8_t>(TFT_DC), static_cast<uint8_t>(TFT_RST));
void setup() {
tft.fillScreen(ILI9341_BLUE);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}