pikapython/examples/lvgl/lv_bar1.py

14 lines
282 B
Python
Raw Normal View History

2022-10-21 22:59:05 +08:00
#!pika
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()))
2022-10-21 22:59:05 +08:00
#!pika