pikapython/examples/lvgl/lv_bar1.py
李昂 71364445e0 !27 add lvgl package and examples
* support event for lvgl
* add example for lvgl
* adding const
* support core-widget for lvgl
* add lvgl package
2022-06-15 12:31:31 +00:00

12 lines
268 B
Python

import pika_lvgl as lv
import PikaStdLib
mem = PikaStdLib.MemChecker()
bar1 = lv.bar(lv.scr_act())
bar1.set_size(200, 20)
bar1.center()
bar1.set_value(70, lv.ANIM.OFF)
print('mem used max: %0.2f kB' % (mem.getMax()))
print('mem used now: %0.2f kB' % (mem.getNow()))