pylvgl
pylvgl copied to clipboard
Python bindings for the LittlevGL graphics library
Hello world :-) Would that be possible to use PyLVGL for mobile applications development? :-) The best part is that is can be used to create desktop applications in place...
Hello world :-) I just found LVGL / PyLVGL. I thought it could be replacement for Qt on platforms where Qt/PyQT is not available easily out of the box (i.e....
Installed via: ```sh git clone --depth 1 --recurse-submodules -j8 https://github.com/rreilink/pylvgl.git cd pylvgl pip install . ``` Demo run: ``` QSettings::value: Empty key passed QSettings::value: Empty key passed Traceback (most recent...
hello, i am using python 3.7.2 on windows 10 when i try to install the package i get the error: "error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with...
Document: - How the bindings generator works (conceptually and more in-depth) - How certain c features in the code map to Python - Memory management
Currently, some methods of objects are not instantiated because the data type is not yet supported; full support for all methods is desired.
At least those required to react to user events should work
It would be useful for user clarity and tooltip generation in the lv_gui_builder if the docstring of generated methods had more information. For example, right now, calling: ``` import inspect...
Currently, the pylvgl binding creates one framebuffer with default size. It should be possible to create new displays of custom size (or not create one at all, if this would...