-
Hi, Is there a way to read a tag value along with the PLC time to which it corresponds? An example for what I am looking for would be the way OPC-UA provides the server source time when reading a node, is there something parallel to that in CIP? Any guidance would be very much appreciated, Alex |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It's not part of the CIP protocol, but you can easily add the functionality using the
Output
|
Beta Was this translation helpful? Give feedback.
It's not part of the CIP protocol, but you can easily add the functionality using the
get_plc_time
method. There are many ways to do it, but here is a short example that adds the timestamp by subclass theLogixDriver
and adds aread_with_timestamp
method:Output