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