Reading Bit from DINT Array
Is it possible to read a bit from a DINT array in a ControlLogix PLC?
Bit elements for DINT arrays are not created by TOP Server when the tags are imported from the device or when they are imported from the L5K file. These tags either have to be added to the tag database manually in the TOP Server or dynamically in the client application. If using a DINT array defined for 100 called DINT, you can access the bit of any DINT in the array by using the address DINT[arraynumber].bitnumber.
Example: DINT[0].1 accesses the value of the second bit in the first Double Integer array.