good evening everyone!
I'm on a project where I use modbus tcp. It is working but I want to create diagnostics of the messages.
is it possible to use the "reading done" node modbus-flex-getter?
Thanks,
Everaldo Marques
good evening everyone!
I'm on a project where I use modbus tcp. It is working but I want to create diagnostics of the messages.
is it possible to use the "reading done" node modbus-flex-getter?
Thanks,
Everaldo Marques
Is that "reading done" displayed as the node's status (text below your getter node)?
If so, you can use a status
node with your flex-getter node as target to capture and filter these messages in a separate flow.
Kuema very good your tip! It worked!
Thank you!!!!
if (msg.status.text == "reading done") {
msg.payload=true;
}
else{
msg.payload=false;
}
return msg;
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.