Private
Public Access
2
0
Files
mraa/examples/python/hello_isr.py
Brendan Le Foll 3731263752 C++: Change enum types to be shorter in C++
* This changes the swig interface so Python/Node APIs change slightly

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
2014-05-19 09:49:30 +01:00

11 lines
134 B
Python

#!/usr/bin/env python
import pymaa as maa
def test():
print("wooo")
x = maa.Gpio(6)
x.dir(maa.DIR_IN)
x.isr(maa.EDGE_BOTH, test)