gpio: Added args param to maa_gpio_isr and added documentation
[contrib/mraa.git] / examples / python / hello_gpio.py
index 5eb58a5..cacee8a 100644 (file)
@@ -24,4 +24,7 @@
 
 import pymaa
 
+print (pymaa.getVersion())
 x = pymaa.Gpio(13)
+x.dir(pymaa.DIR_OUT)
+x.write(1)