24 lines
345 B
Python
Raw Normal View History

2021-10-04 10:04:06 +08:00
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)