node-red-contrib-opcua
node-red-contrib-opcua copied to clipboard
Sending Description Attribute when adding variable
Is it possible to set the Description attribute when adding a variable to the address space?
I tried something like
msg.payload = { "opcuaCommand": "addVariable" }; msg.topic = 'ns=1;s=MyTestInt;datatype=UInt32;description=test'
but without any effect.
Yes, it will need just a small code to make it possible, next version.
I added feature to both addFolder and addVariable.
addFolder, description: MyTestFolder
addVariable, decription: MyVariableX
Thank you very much 👍