Westcott1 / Waveshare-ESP32-S3-Touch-LCD-4.3-and-Arduino

19 stars 2 forks source link

in LovyanGFX example, just i see a black screen... #11

Open dudals-jung opened 1 week ago

dudals-jung commented 1 week ago

in LovyanGFX example, just i see a black screen...

Waveshare ESP32 S3 Touch LCD 4.3 Arduino IDE 2.32 ESP32 Board package 2.0.17 LovyanGFX 1.1.16

can you help me?

Westcott1 commented 1 week ago

HI Dudals-Jung, Here are 4 things to test -

ulijoergens commented 1 week ago

I had the same issue and it was basically the backlight. In order to make it work the extender needs to be configured properly. The following settings after including pins.h did the trick: `#define TP_RST 1

define LCD_BL 2

define LCD_RST 3

define SD_CS 4

define USB_SEL 5

// I2C Pin define

define I2C_MASTER_NUM 1

define I2C_MASTER_SDA_IO 8

define I2C_MASTER_SCL_IO 9

`

However, it was more of a trial-and-error excercise, it's probably not a pretty solution but it worked for me.