mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
serialport addchar whenever needed - not only in char mode
This commit is contained in:
parent
b0c8b0f2c6
commit
1f0aa6908c
@ -233,9 +233,9 @@ module.exports = function(RED) {
|
||||
else {
|
||||
payload = payload.toString();
|
||||
}
|
||||
if ((spliton === "char") && (addchar !== "")) { payload += addchar; }
|
||||
if (addchar !== "") { payload += addchar; }
|
||||
}
|
||||
else if ((spliton === "char") && (addchar !== "")) {
|
||||
else if (addchar !== "") {
|
||||
payload = Buffer.concat([payload,addchar]);
|
||||
}
|
||||
return payload;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-serialport",
|
||||
"version" : "0.8.5",
|
||||
"version" : "0.8.6",
|
||||
"description" : "Node-RED nodes to talk to serial ports",
|
||||
"dependencies" : {
|
||||
"serialport" : "^7.1.5"
|
||||
|
Loading…
Reference in New Issue
Block a user