11 lines
128 B
Python
11 lines
128 B
Python
#!/usr/bin/env python
|
|
|
|
import pymaa as maa
|
|
|
|
def test():
|
|
print("wooo")
|
|
|
|
x = maa.Gpio(6)
|
|
x.dir(maa.MAA_GPIO_IN)
|
|
x.set_isr(test)
|