lv_binding_micropython
lv_binding_micropython copied to clipboard
LVGL binding for MicroPython
Hi all, I have tried building the lvgl micropython bindings multiple times, both from the [lv_micropython repo](https://github.com/lvgl/lv_micropython) and by using as a user module in the main micropython repo and...
This PR attempts to update all the examples to the current v9 api. CLaude Code (AI) was used heavily for this, with the stubs generated in https://github.com/lvgl/lv_binding_micropython/pull/388 providing the neccesary...
 Here is my test code: ```python import os, sys, io import M5 from M5 import * import m5ui import lvgl as lv M5.begin() M5.Lcd.setRotation(1) m5ui.init() scr0 = lv.obj() scr0.set_style_bg_color(lv.color_hex(0xffffff),...
I need lvgl to be able to automatically execute lv.timer_handler() after successful creation. Can't `from lv_timer import Timer` on macOS. If you use asyncio, the LVGL component will not be...