mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
15 lines
231 B
Python
15 lines
231 B
Python
import PikaStdLib
|
|
import STM32G0
|
|
import PikaPiZero
|
|
|
|
mem = PikaStdLib.MemChecker()
|
|
print('hello pikascript')
|
|
print('mem used max:')
|
|
mem.max()
|
|
|
|
rgb = PikaPiZero.RGB()
|
|
rgb.enable()
|
|
while True:
|
|
rgb.flow()
|
|
print('flowing...')
|
|
|