ESP32S3 5 Inch Display - Getting started help
Hi all, I recently purchased this DIS07050H which can be found here:
I have set up all the libraries and can upload to the device, however I can not get the Arduino_GFX Hello World example that is found here to work:
https://github.com/moononournation/Arduino_GFX/tree/master/examples/HelloWorld
Has anyone got this going who could post a working Hello World Arduino GFX Library example with the correct parameters for this dev kit ?
I think I need the correct settings for these two settings at minimum:
//#define GFX_BL DF_GFX_BL // default backlight pin, you may replace DF_GFX_BL to actual backlight pin #define GFX_BL 2 /* More dev device declaration: https://github.com/moononournation/Arduino_GFX/wiki/Dev-Device-Declaration */ #if defined(DISPLAY_DEV_KIT) Arduino_GFX *gfx = create_default_Arduino_GFX(); #else /* !defined(DISPLAY_DEV_KIT) */ /* More data bus class: https://github.com/moononournation/Arduino_GFX/wiki/Data-Bus-Class */ Arduino_DataBus *bus = create_default_Arduino_DataBus(); /* More display class: https://github.com/moononournation/Arduino_GFX/wiki/Display-Class */ Arduino_GFX *gfx = new Arduino_ILI9341(bus, DF_GFX_RST, 0 /* rotation */, false /* IPS */);
Comments
These are the settings you need to make the 5" screen work with the latest Arduino GFX library:
They are included in the library's
PDQgraphicstest
example sketch and I have tested them on my 5" screen.If you wanted to use LovyanGFX, which also includes touch support (no need for a separate touch library), you can use the settings I just posted here.
Hi Ben, thanks for the reply, all working thankyou.