I hope you’re all doing well. I’m pretty new to this kind of project, and while I usually manage to figure things out, this one is really giving me a hard time.
I recently purchased a 4.3-inch 800x480 ESP32 display. According to the AliExpress link, the display driver is the ILI9341.
I’m planning to create a Digital Album Display with this setup. My idea is to attach an SD card and have the display show the pictures from it.
Here are my main questions:
What library can I use to get started with this device?
Are there any specific configurations or initial setups I should be aware of?
Can someone guide me through the process or provide resources to help set this up?
I would greatly appreciate any patience and help you can offer to get this at least initially set up. Thank you in advance!
You can keep it simple by loading images directly from the SD card and displaying them using an appropriate image decoder.
LVGL already supports several image formats and decoders. This slideshow example provides a minimal UI with on-screen controls.
You would still need to implement the display driver, configure the filesystem driver and appropriate image decoder, and keep track of the available images.