mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
14 lines
340 B
Python
14 lines
340 B
Python
#!pika
|
|
import pika_lvgl as lv
|
|
import PikaStdLib
|
|
mem = PikaStdLib.MemChecker()
|
|
|
|
ta = lv.textarea(lv.scr_act())
|
|
ta.set_one_line(True)
|
|
ta.align(lv.ALIGN.TOP_MID, 0, 10)
|
|
ta.add_state(lv.STATE.FOCUSED) # To be sure the cursor is visible
|
|
|
|
print('mem used max: %0.2f kB' % (mem.getMax()))
|
|
print('mem used now: %0.2f kB' % (mem.getNow()))
|
|
|
|
#!pika |