mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
14 lines
364 B
Python
14 lines
364 B
Python
|
import pika_lvgl as lv
|
||
|
import PikaStdLib
|
||
|
mem = PikaStdLib.MemChecker()
|
||
|
|
||
|
# Create a normal drop down list
|
||
|
dd = lv.dropdown(lv.scr_act())
|
||
|
dd.set_options("Apple\nBanana\nOrange\nCherry\nGrape\
|
||
|
Raspberry\nMelon\nOrange\nLemon\nNuts")
|
||
|
|
||
|
dd.align(lv.ALIGN.TOP_MID, 0, 20)
|
||
|
|
||
|
print('mem used max: %0.2f kB' % (mem.getMax()))
|
||
|
print('mem used now: %0.2f kB' % (mem.getNow()))
|