#include <TFT_eSPI.h>
#include <SPI.h>
#define TFT_DC 38
#define TFT_CS 40
#define TFT_RST 39
#define TFT_MOSI 35
#define TFT_SCLK 36
#define TFT_MISO 37
#define BOXSIZE 20
TFT_eSPI tft = TFT_eSPI();
void setup() {
tft.begin();
tft.fillScreen(ILI9341_BLACK);
// tft.fillRect(0, 0, BOXSIZE, BOXSIZE, ILI9341_RED);
tft.setCursor(0, 0);
tft.setTextColor(ILI9341_WHITE);
tft.setTextSize(2);
tft.println("Hello World");
}
void loop() {
}