fix(examples) fix MicroPython examples and run the examples with CI (#2339)

* Fixes to micropython examples

Added missing images and fonts under 'assets'. Since .bin is in gitignore, renamed fonts to .fnt

* Update build_micropython workflow

Build the unix port dev variant and run tests.

See: https://github.com/lvgl/lv_binding_micropython/issues/151
This commit is contained in:
Amir Gonnen
2021-07-01 15:37:57 +03:00
committed by GitHub
parent 3668e54f06
commit 4114dc30e8
18 changed files with 26 additions and 31 deletions

View File

@@ -55,7 +55,7 @@ a2.set_custom_exec_cb(lambda a,val: set_zoom(img,val))
a2.set_values(128, 256)
a2.set_time(5000)
a2.set_playback_time(3000)
a2.set_repeat_count(LV_ANIM_REPEAT_INFINITE)
a2.set_repeat_count(lv.ANIM_REPEAT.INFINITE)
lv.anim_t.start(a2)