Hi folks,
I am using the plugin OPC UA but cannot access inside an array
For objects I simply solved by pointing to the variable within the structure
Structure example:
V10 = {
RPMx100 = 100;
Temp = 18;
PowerOn = True;
}
nodes = [
{name="V10.RPMx100", namespace="6", identifier_type="s", identifier="::Program:V10.RPMx100"},
{name="V10.temp", namespace="6", identifier_type="s", identifier="::Program:V10.temp"},
{name="V10.powerOn", namespace="6", identifier_type="s", identifier="::Program:V10.powerOn"},
{name="V10.torque", namespace="6", identifier_type="s", identifier="::Program:V10.torque"},
{name="V10.torquePercentage", namespace="6", identifier_type="s", identifier="::Program:V10.torquePercentage"},
]
Is there a way to read also the value of data inside an array in OPC UA?