Sign in to follow this  
Followers 0
Studiologe

Array in RSLogix 500

2 posts in this topic

Is there a way for me to create an Array in RSLogix 500? I'm trying to create a DW Array with 3 Elements. for example: Station_1_Sequence[0].0 - Station_1_Sequence[0].31 Station_1_Sequence[1].0 - Station_1_Sequence[1].31 Station_1_Sequence[2].0 - Station_1_Sequence[2].31 It's a 1-Dimensional Array each Array Element has 32 Bits (0-31) and there are 3 Elements (0-2) USING Micrologix 1000 in RSLogix500. Thanks guys

Share this post


Link to post
Share on other sites
The MicroLogix 1000 (and indeed the whole SLC/PLC family) has only 1-dimensional Data Tables. You can use the N7 integer data table, which has 16-bit Words. There is no 32-bit data type in the MicroLogix 1000, so you cannot have bit offsets above 15. ControlLogix and CompactLogix have far more flexible data types. What you describe would be an ordinary DINT[3] array in RSLogix 5000.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0