Is it possible to read value that changes in less than 50ms interval? #1401
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
it depends mostly on the plc (min supported sample interval) and the rest of the python code (40 ms is tough) for questions feel free to use the discoussions feature! -> https://github.com/FreeOpcUa/python-opcua/discussions |
Beta Was this translation helpful? Give feedback.
-
|
I doubt you will get 40ms refresh on a heavy protocol like UA running on a slow platform like python. You would likely have to change your strategy, such as subscribing/reading an array containing the last few seconds. |
Beta Was this translation helpful? Give feedback.
-
|
Depends on plc and load on client. But subscription have in fact very little overhead over sendinh bytes on a socket, so in theory it should work. |
Beta Was this translation helpful? Give feedback.
it depends mostly on the plc (min supported sample interval) and the rest of the python code (40 ms is tough)
for questions feel free to use the discoussions feature! -> https://github.com/FreeOpcUa/python-opcua/discussions