mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
14 lines
282 B
Python
14 lines
282 B
Python
#!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()))
|
|
#!pika
|