Better serial port error handling

This commit is contained in:
Nicholas O'Leary 2013-09-25 15:18:55 +01:00
parent f23762ef9a
commit 6783322e5f
1 changed files with 4 additions and 6 deletions

View File

@ -46,15 +46,13 @@ function SerialOutNode(n) {
return;
}
node.port.on("ready",function() {
node.on("input",function(msg) {
node.on("input",function(msg) {
//console.log("{",msg,"}");
node.port.write(msg.payload,function(err,res) {
if (err) {
node.error(err);
}
if (err) {
node.error(err);
}
});
});
});
} else {
this.error("missing serial config");