pikapython/examples/lvgl/lv_textarea1.py

12 lines
326 B
Python
Raw Normal View History

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()))