Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Created March 27, 2017 00:27
Show Gist options
  • Save midnightcodr/95b35943ec7d2ced2a13022174539fd9 to your computer and use it in GitHub Desktop.
Save midnightcodr/95b35943ec7d2ced2a13022174539fd9 to your computer and use it in GitHub Desktop.
light switch with relay and raspberry pi
var gpio = require('rpi-gpio-mod');
function onoff(v) {
gpio.setup(8, gpio.DIR_OUT, write);
function write() {
gpio.write(8, v, function(err) {
if (err) throw err;
console.log('Written to pin');
process.exit(0)
});
}
}
onoff(process.argv[2]=='on')
// using rpi-gpio-mod instead of rpi-gpio is due to permission issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment