hello_isr.py: add counter to example
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
@@ -25,8 +25,16 @@
|
|||||||
import mraa
|
import mraa
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
class Counter:
|
||||||
|
count = 0
|
||||||
|
|
||||||
|
c = Counter()
|
||||||
|
|
||||||
|
# inside a python interupt you cannot use 'basic' types so you'll need to use
|
||||||
|
# objects
|
||||||
def test(args):
|
def test(args):
|
||||||
print("wooo")
|
print("wooo")
|
||||||
|
c.count+=1
|
||||||
|
|
||||||
x = mraa.Gpio(6)
|
x = mraa.Gpio(6)
|
||||||
x.dir(mraa.DIR_IN)
|
x.dir(mraa.DIR_IN)
|
||||||
|
|||||||
Reference in New Issue
Block a user