#include #include #include #define TFT_CS 10 #define TFT_DC 9 #define TFT_RST 8 Adafruit_GC9A01A tft(TFT_CS, TFT_DC, TFT_RST); void setup() { Serial.begin(115200); tft.begin(); tft.fillScreen(GC9A01A_BLACK); tft.setTextColor(GC9A01A_WHITE); tft.setTextSize(2); tft.setCursor(40, 100); tft.println("HELLO"); tft.setCursor(30, 130); tft.println("FAB ACADEMY"); } void loop() { }