mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
100 lines
3.5 KiB
JavaScript
100 lines
3.5 KiB
JavaScript
|
|
module.exports = function(RED) {
|
|
"use strict";
|
|
var util = require("util");
|
|
var spawn = require('child_process').spawn;
|
|
var fs = require('fs');
|
|
|
|
var gpioCommand = __dirname + '/nrlcd';
|
|
var allOK = true;
|
|
|
|
try {
|
|
var cpuinfo = fs.readFileSync("/proc/cpuinfo").toString();
|
|
if (cpuinfo.indexOf(": BCM") === -1) {
|
|
RED.log.warn("rpi-lcd : "+RED._("pilcd.errors.ignorenode"));
|
|
allOK = false;
|
|
}
|
|
else if (!fs.existsSync("/usr/share/doc/python-rpi.gpio")) {
|
|
RED.log.warn("rpi-lcd : "+RED._("pilcd.errors.libnotfound"));
|
|
allOK = false;
|
|
}
|
|
else if (!(1 & parseInt ((fs.statSync(gpioCommand).mode & parseInt ("777", 8)).toString (8)[0]))) {
|
|
RED.log.warn("rpi-lcd : "+RED._("pilcd.errors.needtobeexecutable",{command:gpioCommand}));
|
|
allOK = false;
|
|
}
|
|
}
|
|
catch(err) {
|
|
RED.log.warn("rpi-lcd : "+RED._("pilcd.errors.ignorenode"));
|
|
allOK = false;
|
|
}
|
|
|
|
function PiLcdNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.pins = n.pins;
|
|
var node = this;
|
|
|
|
function inputlistener(msg) {
|
|
if (RED.settings.verbose) { node.log("inp: " + msg.payload); }
|
|
if (node.child !== null) { node.child.stdin.write(msg.payload + "\n"); }
|
|
else { node.warn("Command not running"); }
|
|
}
|
|
|
|
if (allOK === true) {
|
|
if (node.pins !== undefined) {
|
|
node.child = spawn(gpioCommand, [node.pins]);
|
|
node.running = true;
|
|
if (RED.settings.verbose) { node.log("pin: " + node.pins + " :"); }
|
|
node.on("input", inputlistener);
|
|
|
|
node.child.stdout.on('data', function(data) {
|
|
if (RED.settings.verbose) { node.log("out: " + data + " :"); }
|
|
});
|
|
|
|
node.child.stderr.on('data', function(data) {
|
|
if (RED.settings.verbose) { node.log("err: " + data + " :"); }
|
|
});
|
|
|
|
node.child.on('close', function(code) {
|
|
if (RED.settings.verbose) { node.log("ret: " + code + " :"); }
|
|
node.child = null;
|
|
node.running = false;
|
|
});
|
|
|
|
node.child.on('error', function(err) {
|
|
if (err.errno === "ENOENT") { node.warn('Command not found'); }
|
|
else if (err.errno === "EACCES") { node.warn('Command not executable'); }
|
|
else { node.log('error: ' + err); }
|
|
});
|
|
|
|
}
|
|
else {
|
|
node.error("Invalid GPIO pins: " + node.pin);
|
|
}
|
|
|
|
var wfi = function(done) {
|
|
if (!node.running) {
|
|
if (RED.settings.verbose) { node.log("end"); }
|
|
done();
|
|
return;
|
|
}
|
|
setTimeout(function() { wfi(done); }, 333);
|
|
}
|
|
|
|
node.on("close", function(done) {
|
|
if (node.child != null) {
|
|
node.child.stdin.write("c:lose" + node.pin);
|
|
node.child.kill('SIGKILL');
|
|
}
|
|
wfi(done);
|
|
});
|
|
}
|
|
else {
|
|
node.status({fill:"grey",shape:"dot",text:"pilcd.status.not-available"});
|
|
node.on("input", function(msg){
|
|
node.status({fill:"grey",shape:"dot",text:RED._("pilcd.status.na",{value:msg.payload.toString()})});
|
|
});
|
|
}
|
|
}
|
|
RED.nodes.registerType("rpi-lcd", PiLcdNode);
|
|
}
|