janick / WT32-SqLn

Getting started with Wireless Tag's WT32-SC01 Plus using SquareLine Studio and LVGL
MIT License
84 stars 11 forks source link

Work with Pure LVGL only (instead of Lovyan) #13

Open AnouarBourja opened 9 months ago

AnouarBourja commented 9 months ago

I would like to know how i can run the code using LVGL only without Lovyan.

Thanks.

janick commented 9 months ago

You can't use LVGL without a device driver to talk to your display device.

LVGL does buttons and screens and labels and call back functions. LovyanGFX (or TFT_eSPI -- but this project uses the former) draws lines and squares and characters.

It's a layered system. You can't use the higher layers without the supporting lower ones.

AnouarBourja commented 9 months ago

so if i want to use LVGL without LovyanGFX i need to make custom device driver that will link between my device and lvgl ?

janick commented 9 months ago

That is my understanding, yes. If you do so, might as well develop it using the LovyanGFX framework and contribute it.