1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/examples/libs/libpng/lv_example_libpng_1.py

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()