ESP32-S3-BOX-3 SCREEN and ARDUINO IDE

antares.atlantide
Posts: 2
Joined: Mon Apr 14, 2025 9:01 am

ESP32-S3-BOX-3 SCREEN and ARDUINO IDE

Postby antares.atlantide » Mon Apr 14, 2025 12:57 pm

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{
}

Lvhaiyu
Espressif staff
Espressif staff
Posts: 20
Joined: Fri Sep 15, 2023 7:10 am

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

Postby Lvhaiyu » Tue Apr 15, 2025 11:54 am

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

Who is online

Users browsing this forum: No registered users and 1 guest