#include <TFT_eSPI.h> // Graphics and font library for ST7735 driver chip
#include <SPI.h>
TFT_eSPI tft = TFT_eSPI(); // Invoke library, pins defined in User_Setup.h
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
tft.init();
tft.println("Hello TFT!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}