#include <TFT_eSPI.h>
TFT_eSPI tft = TFT_eSPI();
const char helloWorld[] PROGMEM = "Hello World";
void setup() {
tft.init();
tft.setRotation(1);
tft.fillScreen(TFT_BLACK);
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.setTextSize(2);
tft.setCursor(10, 10);
tft.println("helloWorld");
}
void loop() {
// Nothing to do here
}