mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
12 lines
230 B
Python
Executable File
12 lines
230 B
Python
Executable File
#!/opt/bin/lv_micropython -i
|
|
import lvgl as lv
|
|
import display_driver
|
|
import fs_driver
|
|
|
|
fs_drv = lv.fs_drv_t()
|
|
fs_driver.fs_register(fs_drv, 'S')
|
|
|
|
image = lv.image(lv.screen_active())
|
|
image.set_src("S:png_demo.png")
|
|
image.center()
|