Replies: 1 comment
-
Sry for the late response see this Pr #1445 def callback(nodeid, attr):
return ua.DataValue(Value=ua.Variant(Value=5, VariantType=ua.VariantType.Int64))
server.set_attribute_value_callback(node.nodeid, callback, attr=ua.AttributeIds.Value) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I created a server instance that has a writable boolean variable when I write the variable value from an opcua client I need to intercept the write request on the opcua server, in order to trigger a custom function that handles this event.
Basically, I would need to intercept an event that allows me to reuse the node id and value of the data variable that is about to be written.
Is there anything already implemented that allows me to do this?
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions