Hi,
I want to use lvgl (9.3.0) on ESP32-S3/ESP32-P4 with ArduinoIDE. May be also EEZ Studio to generate objects.
For the moment (from examples etc) it looks like I need a graphic library like TFT_eSPI, that takes what lvgl generates and send it to the display.
Inside lv_conf.h I see a part
/* Drivers for LCD devices connected via SPI/parallel port */
#define LV_USE_ST7735 0
#define LV_USE_ST7789 0
#define LV_USE_ST7796 0
#define LV_USE_ILI9341 0
#define LV_USE_FT81X 0
Also there is a define for MIPI-DSI-displays (some companies use it) and in lvgl\src\drivers\display\ I see subfolders for some displays with command sequences.
So my question is: can lvgl send graphic data direct to a display without TFT_eSPI or another graphic library?
Bye, Jürgen