Page 1 of 1

ESP32-S3-BOX-3 SCREEN and ARDUINO IDE

Posted: Mon Apr 14, 2025 12:57 pm
by antares.atlantide
Hello,
I would like to know if it's possible to simply display "Hello World" on the ESP32-S3-Box-3 screen using the Arduino IDE. Since I've turned the program , it's almost impossible. ESP32_Display_Panel is intended for ESP32 boards, not ESP32S3 boards. I'm waiting for a clear and simple answer. I would be delighted if you could suggest a simple test solution that works.

#include "TFT_eSPI.h"
#include "SPI.h"

void setup() {
// put your setup code here, to run once:

pinMode(TFT_BL, OUTPUT);
digitalWrite(TFT_BL, HIGH);

tft.init();

tft.setRotation(1);

tft.fillScreen(TFT_RED);
tft.setTextColor(TFT_WHITE, TFT_YELLOW);
tft.setTextSize(2);
tft.setCursor(0, 0, 2);
tft.printf("HELLO WORLD");
}

void loop{
}

Re: ESP32-S3-BOX-3 SCREEN and ARDUINO IDE

Posted: Tue Apr 15, 2025 11:54 am
by Lvhaiyu
The example code you shared is not from the ESP32_Display_Panel library, but rather from the TFT_eSPI library. For information on how to use ESP32_Display_Panel, please refer to the following link:
https://github.com/esp-arduino-libs/ESP ... st-example