feat(drivers): add x11 driver (display/input) support (#4795)

Co-authored-by: Gregor Copoix <gregor.copoix@ithinx.io>
This commit is contained in:
gcopoix
2023-11-15 14:08:03 +01:00
committed by GitHub
parent 89d9ee1270
commit 5267c0b9f4
24 changed files with 1050 additions and 42 deletions

View File

@@ -30,7 +30,7 @@ void lv_example_dropdown_3(void)
lv_dropdown_set_text(dropdown, "Menu");
/*Use a custom image as down icon and flip it when the list is opened*/
LV_IMAGE_DECLARE(img_caret_down)
LV_IMAGE_DECLARE(img_caret_down);
lv_dropdown_set_symbol(dropdown, &img_caret_down);
lv_obj_set_style_transform_rotation(dropdown, 1800, LV_PART_INDICATOR | LV_STATE_CHECKED);