lvgl / lv_binding_micropython

LVGL binding for MicroPython
MIT License
237 stars 156 forks source link

Micro python bindings on ubuntu machine #332

Closed Riddhikavar closed 3 months ago

Riddhikavar commented 4 months ago

Hi Folks,

I am trying to create a GUI application.

I want to use python to create GUI, I am working on device rock-pi-4

I encountered issues related to micropython bindings, I tried to check examples but getting usys module error, and no solutions for that.

I am trying to check this on ubuntu machine before testing it on device.

If any one can help me out here. How should I proceed further that will be a great help.

Thanks in advance!

PGNetHun commented 4 months ago

Hello! The device rock-pi-4 is a Linux based device, isn't it? If yes, then you can use Linux + SDL related drivers on it. See:

The usys module error is MicroPython related, you should use sys instead (and same for other builtin MicroPython modules: just remove the first letter "u" from the name).

Example of building "unix board" (for Ubuntu Linux and Linux based rock-pi-4):

cd lv_micropython
make -C mpy-cross

cd ports/unix
make submodules
make