lv_binding_micropython icon indicating copy to clipboard operation
lv_binding_micropython copied to clipboard

LVGL binding for MicroPython

Results 84 lv_binding_micropython issues
Sort by recently updated
recently updated
newest added

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...

![Image](https://github.com/user-attachments/assets/a5467f2f-9658-4548-96cb-c5595ef6ac4e) 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...