mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
14 lines
220 B
Python
14 lines
220 B
Python
import PikaStdLib
|
|
import pikaRTThread
|
|
|
|
thread = pikaRTThread.Thread()
|
|
mem = PikaStdLib.MemChecker()
|
|
i = 0
|
|
while i < 3:
|
|
i = i + 1
|
|
print('hello PikaScript!')
|
|
thread.mdelay(500)
|
|
|
|
print('mem use max:')
|
|
mem.max()
|