mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
14 lines
271 B
Python
Executable File
14 lines
271 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')
|
|
|
|
wp = lv.image(lv.screen_active())
|
|
# The File system is attached to letter 'S'
|
|
|
|
wp.set_src("S:img_lvgl_logo.jpg")
|
|
wp.center()
|