Quick Start Owner's manual
Table Of Contents
- 1756-QS001E-EN-P, Logix5000 Controllers Quick Start
- Summary of Changes
- Table of Contents
- 1 - Program and Test a Simple Project
- What You Need
- Before You Begin
- Follow These Steps
- Create a Project for the Controller
- Add Your I/O Modules
- Look at Your I/O Data
- Ladder Logic
- Enter a Function Block Diagram
- Assign Alias Tags for Your Devices
- Establish a Serial Connection to the Controller
- Download a Project to the Controller
- Select the Operating Mode of the Controller
- 2 - Organize a Project
- 3 - Program Add-On Instructions
- What You Need
- Follow These Steps
- Insert an Add-On Instruction
- Copy an Add-On Instruction Definition
- Import an Add-On Instruction Definition
- Access a Parameter That Is Not Visible
- Monitor or Change the Value of a Parameter of an Add-On Instruction
- View the Logic of an Add-On Instruction
- Edit and Monitor an Add-On Instruction
- Update an Add-On Instruction to a Newer Revision
- 4 - Program an Equipment Phase
- 5 - Program a Project Offline
- 6 - Document a Project
- 7 - Go Online to the Controller
- 8 - Program a Project Online
- 9 - Troubleshoot the Controller
- Index
- Back Cover

90 Publication 1756-QS001E-EN-P - October 2009
Chapter 5 Program a Project Offline
Create a Tag
1. Double-click the tag area.
2. Type a name for the tag and press Enter.
Use underscores '_' in place of spaces.
3. Right-click the tag name and choose New.
4. Type the data type.
To browse for a data type or assign array dimensions, click .
Where Is
Name Name that identifies this specific tag.
Element Subscript or subscripts that point to a specific element within an array.
• Use the element identifier only if the tag or member is an array.
• Use one subscript for each dimension of the array. For example: [5], [2,8], [3,2,7].
To indirectly (dynamically) reference an element, use a tag or numeric expression that provides the element number.
For example, MyArray[Tag_1], MyArray[Tag_2-1], MyArray[ABS(Tag_3)].
Member Specific member of a structure.
• Use the member identifier only if the tag is a structure.
• If the structure contains another structure as one of its members, use additional levels of the .Member
format to identify the required member.
Bit Specific bit of an integer data type (SINT, INT, or DINT).
Index To indirectly (dynamically) reference a bit of an integer, use a tag or numeric expression that provides the bit
number. For example, MyTag.[Tag_1], MyTag.[Tag_2-1], MyTag.[ABS(Tag_4)].