moononournation / Arduino_GFX

Arduino GFX developing for various color displays and various data bus interfaces
Other
811 stars 158 forks source link

Dev Device Declaration for ESP32-8048S070 - 7 Inch Display not working #509

Closed Zurrmaxe closed 1 month ago

Zurrmaxe commented 2 months ago

Hello Friends I have a new ESP32-8048S070 - Display, but i can not get it to word. I use a simple Hello-World-Sketch with the settings from the Device Declaration .

include

define TFT_BL 2

Arduino_ESP32RGBPanel rgbpanel = new Arduino_ESP32RGBPanel( 41 / DE /, 40 / VSYNC /, 39 / HSYNC /, 42 / PCLK /, 14 / R0 /, 21 / R1 /, 47 / R2 /, 48 / R3 /, 45 / R4 /, 9 / G0 /, 46 / G1 /, 3 / G2 /, 8 / G3 /, 16 / G4 /, 1 / G5 /, 15 / B0 /, 7 / B1 /, 6 / B2 /, 5 / B3 /, 4 / B4 /, 0 / hsync_polarity /, 180 / hsync_front_porch /, 30 / hsync_pulse_width /, 16 / hsync_back_porch /, 0 / vsync_polarity /, 12 / vsync_front_porch /, 13 / vsync_pulse_width /, 10 / vsync_back_porch /); Arduino_RGB_Display gfx = new Arduino_RGB_Display( 800 / width /, 480 / height /, rgbpanel, 0 / rotation /, true / auto_flush /);

void setup(void) { gfx->begin(); gfx->fillScreen(BLACK);

ifdef TFT_BL

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

endif

gfx->setCursor(10, 10);
gfx->setTextColor(RED);
gfx->println("Hello World!");

}

void loop() { delay(3000); // 1 second }

my settings : ESP32 2.09 / Arduino GFX Libary 1.28/GFX for Arduino 1.47

Compile without errors, but no text on screen

Any Ideas ?

Alf

moononournation commented 1 month ago

Sorry, only listed RGB dev devices are tested. Please understand I cannot support not tested devices.