- Updated LVGL from 8.3 to 9.0 (removed example/docs/demo folders) - Updated esp_lvgl_port to current status of the `lvgl9` branch on `esp-bsp`: https://github.com/espressif/esp-bsp/tree/lvgl9 - Updated all boards and drivers - Removed `libs/lv_drivers` subproject as SDL is now supported by LVGL directly (although keyboard input seems broken) - Updated `libs/lv_screenshot` - Fixed the way `tt_statusbar` widget works due to behaviour change in LVGL - Updated other lvgl code
ESP LVGL Touch Screen Example
Very simple example for demonstration of initialization and usage of the esp_lvgl_port component. This example contains four main parts:
1. LCD HW initialization - app_lcd_init()
Standard HW initialization of the LCD using esp_lcd component. Settings of this example are fully compatible with ESP-BOX board.
2. Touch HW initialization - app_touch_init()
Standard HW initialization of the LCD touch using esp_lcd_touch component. Settings of this example are fully compatible with ESP-BOX board.
3. LVGL port initialization - app_lvgl_init()
Initialization of the LVGL port.
4. LVGL objects example usage - app_main_display()
Very simple demonstration code of using LVGL objects after LVGL port initialization.