Amir Gonnen
Amir Gonnen
`update_or_create` calls `page_exists` and `get_page_id` regardless of the `parent_id` argument that was specified. These in turn search for a page according to "title" anywhere in the space. When "title" already...
I'm opening this issue to point out missing Micropython examples: - [ffmpeg](https://github.com/lvgl/lvgl/tree/master/examples/libs/ffmpeg) - [fragment](https://github.com/lvgl/lvgl/tree/master/examples/others/fragment) - [gridnav](https://github.com/lvgl/lvgl/tree/master/examples/others/gridnav) - [ime](https://github.com/lvgl/lvgl/tree/master/examples/others/ime) - [imgfont](https://github.com/lvgl/lvgl/tree/master/examples/others/imgfont) - [msg](https://github.com/lvgl/lvgl/tree/master/examples/others/msg) (only [lv_example_msg_1.py](https://github.com/lvgl/lvgl/blob/master/examples/others/msg/lv_example_msg_1.py) implemented) Also, [Demos](https://github.com/lvgl/lvgl/tree/master/demos) are missing. [lv_demo_widgets.py](https://github.com/lvgl/lvgl/blob/master/demos/widgets/lv_demo_widgets.py)...
Motivation: qstr search scales poorly - see https://forum.micropython.org/viewtopic.php?f=2&t=9748 In short, when there are many qstrs, performance is poor because of the way they are searched. This affects, for example, load...
I'm using a TFT ILI9341 module with XPT2066 touch controller, like this one:  While the display works fine and a touch can be...
This is important for compatability with libraries that call `mp_sched_schedule` and need to compile on both the original Microptython and lobo's Micropython. New prototype name changed to `mp_sched_schedule_ex`
[Micropython](https://github.com/micropython/micropython) already supports [ESP32, ESP32-S2, ESP32-C3, ESP32-S3](https://www.espressif.com/en/products/socs). However [lv_micropython](https://github.com/lvgl/lv_micropython) only supports ESP32 today. The goal is to **add support for ESP32-S2, ESP32-C3, ESP32-S3 in [lv_binding_micropython](https://github.com/lvgl/lv_binding_micropython) and [lv_micropython](https://github.com/lvgl/lv_micropython)**. This includes: -...
The Windows port on lv_micropython seems to be broken. Need to fix it and add CI tests Related: - https://forum.lvgl.io/t/compile-lv-micropython-v8-for-windows/6672 - https://github.com/lvgl/lv_micropython/pull/21
Every time lvgl calls read_cb of the indev driver, the driver queries the touch panel and obtains coordinates and touch status. It’s possible to improve the driver so it would...
Fix examples under examples/ dir to work with LVGL v8. https://github.com/lvgl/lv_binding_micropython/tree/dev-8.0/examples - [x] advanced_demo.py - [x] custom_widget_example.py - [x] uasyncio_example1.py - [x] example1.py - [x] example2.py - [x] example3.py -...
The Micropython bindings are compiled into binaries and consume relatively large program space (flash/rom). Need to find ways to decrease program size. Related: - https://github.com/lvgl/lv_binding_micropython/issues/75#issuecomment-629535257