mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
27 lines
261 B
Python
27 lines
261 B
Python
import PikaStdLib
|
|
import W801Device
|
|
|
|
|
|
pb5=W801Device.GPIO()
|
|
|
|
pb5.init()
|
|
pb5.setPin('PB5')
|
|
pb5.setMode('out')
|
|
pb5.setPull('up')
|
|
pb5.enable()
|
|
|
|
|
|
|
|
print('hello PikaScript!')
|
|
|
|
|
|
while True:
|
|
pb5.high()
|
|
print('h')
|
|
pb5.low()
|
|
print('l')
|
|
|
|
|
|
|
|
|