daialab-garray
v1.0.12
Published
node-red array node
Downloads
3
Readme
gArray
This is a package for node-red.
function
Separate the message. You can set the delay of sending separate messages also, default delay time is 1000ms. and When sending the last message, msg.complete="Y" is set so you can check the last message.
Example
there are message from previous node, like msg.payload = [1,2,3,4,5,6]
gArray split msg.payload
time msg.payload
0 msg.payload = 1
1000 msg.payload = 2
2000 msg.payload = 3
... ...
5000 msg.payload = 6
msg.complete = 'Y'