onoff
Version:
GPIO access and interrupt detection with Node.js
33 lines (24 loc) • 641 B
JavaScript
;
const Gpio = require('../onoff').Gpio; // Gpio class
const led = new Gpio(17, 'out'); // Export GPIO17 as an output
let stopBlinking = false;
// Toggle the state of the LED connected to GPIO17 every 200ms
const blinkLed = _ => {
if (stopBlinking) {
return led.unexport();
}
led.read((err, value) => { // Asynchronous read
if (err) {
throw err;
}
led.write(value ^ 1, err => { // Asynchronous write
if (err) {
throw err;
}
});
});
setTimeout(blinkLed, 200);
};
blinkLed();
// Stop blinking the LED after 5 seconds
setTimeout(_ => stopBlinking = true, 5000);