#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#define TFT_CS 4
#define TFT_DC 5
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
tft.println("\nHello, ESP32-S3!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
tft.setTextColor(ILI9341_WHITE);
tft.println("\nHello, ESP32-S3!");
}