mirror of
https://github.com/eclipse/mraa.git
synced 2025-10-18 00:51:25 +08:00
11 lines
132 B
JavaScript
11 lines
132 B
JavaScript
#!/usr/bin/env node
|
|
|
|
var m = require('mraa')
|
|
|
|
function h() {
|
|
console.log("HELLO!!!!")
|
|
}
|
|
|
|
x = new m.Gpio(14)
|
|
x.isr(m.EDGE_BOTH, h)
|