I need to communicate an Ignition 8.1.47 with an Allen Bradley PLC through a device (PLC3) of type Allen-Bradley Logix Driver.
The thing is, I'm not clear on how to fill in the OPC ItemPath field in order to communicate with the memory addresses. For example, the boolean B9:15/6.
I tried with ns=1;s=[PLC3]B9:15/6 but it gives me a Configuration Error.
How should I fill in the OPC Item path to reach the signal?
Be aware that when a legacy AB PLC (PLC2,3,5, SLC500) is converted to modern Logix, the files' type & number become a Logix tag name, and the data is structured similarly, but the syntax within the modern conversion changes. B9:15/6 will becomes B9[15].6, using square brackets for array subscripts, and a dot before a bit number. The forward slash is not valid as a bit delimiter in modern Logix. Nor can you use the colon for the array subscript.