Dear All, Im kinda slipping on this and need some tip from the experts: Im developing an AddIN Button to parse IO`s properties from RS (-Name, -Type, -Value, -DeviceMapping);
I can read all but last one by e.g.:
Signal signal1 = controller.IOSystem.GetSignal(“diMotorOn”);
string Name = signal1.Name; (I know redundant =S, just as example)
string Type = signal1.Type.ToString();
float Value = signal1.Value;
int mapPosition = signal1.?
Ok, I can Query those values from EIO.cfg after doing a backup and compare them with my standard sequence but there maybe is some shortcut from IOSystem?
I need to make sure IO`s are located in the right sequence bit (standard).
Thank you in advance
Edson