Hi all, I wanted to know if anyone faced a similar problem. I have created a custom type (Struct) on my OPC-UA server. This one I can read. Unfortunately I don't know how to change values in this struct.
variants = client.load_type_definitions()
ex_node = client.get_node("ns=4;s=glb.exObj")
ex_node_value = ex_node.get_value()
ex_node_datavalue = ex_node.get_data_value()
For testing I created the object "exObj" from this Struct type. This contains two bool variables and one float. How can I change one or more values with "set_value()" now?

Thanks in advance! =)
Hi all, I wanted to know if anyone faced a similar problem. I have created a custom type (Struct) on my OPC-UA server. This one I can read. Unfortunately I don't know how to change values in this struct.
variants = client.load_type_definitions()ex_node = client.get_node("ns=4;s=glb.exObj")ex_node_value = ex_node.get_value()ex_node_datavalue = ex_node.get_data_value()For testing I created the object "exObj" from this Struct type. This contains two bool variables and one float. How can I change one or more values with "set_value()" now?

Thanks in advance! =)