Here are some of my projects
Esp32 OLED Counter Display
Integrating LVGL embedded graphics library with SSD1306 OLED display on ESP32. Source code Project goal Get LVGL working on a 128x64 monochrome OLED display connected to ESP32 with I2C. Quick googling resulted only in outdated libraries. This implementation uses the latest libraries to ensure future proofing. Main challenge LVGL outputs pixels in a linear framebuffer format but the display uses page addressing where the screen is divided into 8 horizontal pages of 128x8 pixels. Required implementing a custom flush callback to convert between these formats. ...