mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
13 lines
210 B
Python
13 lines
210 B
Python
import PikaStdLib
|
|
import pikaRTThread
|
|
|
|
thread = pikaRTThread.Thread()
|
|
mem = PikaStdLib.MemChecker()
|
|
|
|
for i in range(0, 3):
|
|
print('hello PikaScript!')
|
|
thread.mdelay(500)
|
|
|
|
print('mem use max:')
|
|
mem.max()
|