Replies: 2 comments 8 replies
-
"asyncua.ua.uaerrors.auto.BadNodeIdInvalid" is a response from the opc ua server (siemens)! |
Beta Was this translation helpful? Give feedback.
2 replies
-
It does show that there is no type provided for all nodes, not sure if that's ok |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This node works
node = client.get_node(ua.NodeId('/Channel/Parameter/R', 2))
When I ask the value I only get the first value of an array. var = await node.get_value()
According to the machine documentation I should request it with this address:
'/Channel/Parameter/R[u1,1]' or even as array of 10 parameters '/Channel/Parameter/R[u1,1,10]'
Page 47 https://cache.industry.siemens.com/dl/files/318/109760318/att_960876/v1/840Dsl_OPCUA_commiss_man_0818_en-US.pdf
But /Channel/Parameter/R[u1,1] as node will always give me:
_asyncua.ua.uaerrors.auto.BadNodeIdInvalid: "The syntax of the node id is not valid."
So how can I access this data or does this library not support this?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions