lv_binding_micropython
lv_binding_micropython copied to clipboard
LVGL binding for MicroPython
This is an updated version of #242 which allows to build `lv_binding_micropython` as a `USER_C_MODULE` with latest upstream MicroPython. Tested on : - unix port (linux, macOS) - esp32 -...
As I own a set of these cheap 2432S028 boards (CYD - Cheap Yellow Display) I wanted to use this project to create a UI for these kind of boards,...
https://github.com/lvgl/lv_binding_micropython/blob/master/driver/esp32/ili9XXX.py ` class st7789(ili9XXX): # The st7789 display controller has an internal framebuffer arranged in a 320x240 pixel # configuration. Physical displays with pixel sizes less than 320x240 must supply...
I am using rpi pico with generic driver ili9xxx for the screen and ft6x36 for the touch. Everything works well normally, but randomly after some time running the touchscreen stops...
I wasn't sure whether to report this as an issue or not, so feel free to immediately close it, I just wanted to document this for others to find if...
When I try to use lvgl simulator, it stays stuck with 'Loading code snippet...' If I open devtools, I see: 'TypeError: $(...).tooltip is not a function' error in console,
Hello, thanks for the great library. I would like to use the tcal.py to calibrate my touchscreen, LVGL V8. I use an ESP32 D1 Mini and an Ili9341 Touch 2.8...
Problem: I can't get both touch and screen working together. Version: MicroPython v1.20.0-713-g81d3c1215-dirty on 2024-06-12; ESP32 module with ESP32 Test: The screen and the touchscreen work on simple micropython and/or...
1. The board is Rp2 PICO, and the display is ili9341 Problem encountered: Object color inversion Temporary solution: https://github.com/lvgl/lv_binding_micropython/blob/master/driver/generic/ili9xxx.py Add **_INVERT = const(0x21)** after line 78, and add **(_INVERT, None)**...
build `micropython` successfully ``` export PATH=/path/to/host/bin:$PATH make -C ports/unix CROSS_COMPILE=arm-none-linux-gnueabihf- ``` Run `fb_test.py` failed ``` micropython fb_test.py ```` Error output: ``` # micropython fb_test.py Traceback (most recent call last): File...