1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Add error msg to rpi node

This commit is contained in:
dceejay 2015-03-16 17:09:13 +00:00
parent 2a47951e46
commit 8fea443e71

View File

@ -150,7 +150,7 @@ module.exports = function(RED) {
node.status({fill:"green",shape:"dot",text:msg.payload.toString()});
}
else {
node.error("nrpgio python command not running");
node.error("nrpgio python command not running",msg);
node.status({fill:"red",shape:"ring",text:"not running"});
}
}