Reputation: 11
i am creating a simple OPC UA Client. I need to know where i can find a document with the list of all standard nodes and their IDs.
Thank you Joshwa
Upvotes: 1
Views: 1052
Reputation: 7005
Depends on the version of UA, but:
https://opcfoundation.org/UA/schemas/1.02/NodeIds.csv https://opcfoundation.org/UA/schemas/1.03/NodeIds.csv https://opcfoundation.org/UA/schemas/1.04/NodeIds.csv
Most Stacks will have some kind of static enumeration available to reference as well.
For example, Eclipse Milo lists them here, and here are the ones from .NET reference implementation.
Upvotes: 1