I'm converting an old application to Ignition. Most of the data is stored in integer format in N11, N200, etc.
Do I need to create a tag for N200.0, N200.1, etc. or is there a means to read the whole lot as one array. (I suspect not.)
I'm converting an old application to Ignition. Most of the data is stored in integer format in N11, N200, etc.
Do I need to create a tag for N200.0, N200.1, etc. or is there a means to read the whole lot as one array. (I suspect not.)
Not, and it would be N200[0], N200[1], et cetera. (The driver will read big chunks of the array together after optimization, I believe, similar to reading Modbus with gap spanning.)
This is bit addressing syntax, not to be confused with any kind of array syntax that doesn't exist.
Thank you both.