10 lines
135 B
Python
10 lines
135 B
Python
print('test Pika Gpio')
|
|
pin = ec7xx.GPIO()
|
|
pin.setPin(1)
|
|
pin.setMode('out')
|
|
pin.getMode()
|
|
pin.enable()
|
|
pin.high()
|
|
pin.low()
|
|
pin.read()
|