1 #!/usr/bin/env node 2 3 var m = require('mraa') 4 5 function h() { 6 console.log("HELLO!!!!") 7 } 8 9 x = new m.Gpio(14) 10 x.isr(m.EDGE_BOTH, h) 11