mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
24 lines
345 B
Python
24 lines
345 B
Python
|
import PikaStdLib
|
||
|
import STM32
|
||
|
|
||
|
mem = PikaStdLib.MemChecker()
|
||
|
io1 = STM32.GPIO()
|
||
|
time = STM32.Time()
|
||
|
|
||
|
io1.init()
|
||
|
io1.setPin('PB8')
|
||
|
io1.setMode('out')
|
||
|
io1.enable()
|
||
|
io1.low()
|
||
|
|
||
|
print('hello pikascript')
|
||
|
print('mem.max :')
|
||
|
mem.max()
|
||
|
print('mem.now :')
|
||
|
mem.now()
|
||
|
|
||
|
while True:
|
||
|
io1.low()
|
||
|
time.sleep_ms(500)
|
||
|
io1.high()
|
||
|
time.sleep_ms(500)
|