2014-05-13 20:45:00 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
import pymaa as maa
|
|
|
|
|
|
2014-06-19 16:23:43 +00:00
|
|
|
def test(args):
|
2014-05-13 20:45:00 +00:00
|
|
|
print("wooo")
|
|
|
|
|
|
|
|
|
|
x = maa.Gpio(6)
|
2014-05-19 09:49:30 +01:00
|
|
|
x.dir(maa.DIR_IN)
|
2014-06-19 16:23:43 +00:00
|
|
|
x.isr(maa.EDGE_BOTH, test, test)
|