Created
March 27, 2017 00:27
-
-
Save midnightcodr/95b35943ec7d2ced2a13022174539fd9 to your computer and use it in GitHub Desktop.
light switch with relay and raspberry pi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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