From e4831470e169204a5f8386dbf293e44dbb9dbf0b Mon Sep 17 00:00:00 2001 From: Thomas Juerges <4-jurges@users.noreply.git.astron.nl> Date: Thu, 19 Nov 2020 19:46:54 +0100 Subject: [PATCH] Add missing OPC-UA to Tango mapping --- RCUSCC/RCUSCC/RCUSCC.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RCUSCC/RCUSCC/RCUSCC.py b/RCUSCC/RCUSCC/RCUSCC.py index c6bc06b4d..6e59f1456 100644 --- a/RCUSCC/RCUSCC/RCUSCC.py +++ b/RCUSCC/RCUSCC/RCUSCC.py @@ -280,6 +280,10 @@ class RCUSCC(Device): self.attribute_mapping["RCU01_Att2_R"] = self.pcc_node.get_child(["{}:RCU01_Att2_R".format(self.name_space_index)]) + self.attribute_mapping["RCU01_Att2_RW"] = self.pcc_node.get_child(["{}:RCU01_Att2_RW".format(self.name_space_index)]) + + self.attribute_mapping["RCU01_Att3_R"] = self.pcc_node.get_child(["{}:RCU01_Att3_R".format(self.name_space_index)]) + self.attribute_mapping["RCU01_Att3_RW"] = self.pcc_node.get_child(["{}:RCU01_Att3_RW".format(self.name_space_index)]) self.attribute_mapping["RCU01_Att1_R"] = self.pcc_node.get_child(["{}:RCU01_Att1_R".format(self.name_space_index)]) -- GitLab