Adding IO Cards

5
Adding I/O Cards Normally when you’re creating a new project, you’ll be starting from an electrical design. I didn’t bother creating one for this tutorial, but assume we’re dealing with the following: One 16 Point Input Card (1756-IB16) One 16 Point Output Card (1756-OB16I) One Motion Control Card (1756-M02AE) Before we add them, realize that we need to give each one a name. Naming of devices and I/O is a Big Deal ™ in the design of a control system. Consistency is important. Specifically, it’s important that it’s easy to identify the device, I/O wire, input point, and the contact or coil in the program with each other. Ideally, a person who has to look at the program later just wants to find a tag name in the program that matches the wire number or device name in the real world. I’m also a fan of short tags and long descriptions. When you’re trying to fit lots of logic on one rung without wrapping, it’s helpful to have short tag names. If you came from the SLC 500 side, you’ll appreciate the conciseness of B3:5/0. Programmers who are new to RSLogix 5000 tend to create Really_Long_Tag_Names_Just_Because_They_Can. That’s really bad practice. Come up with short forms for all the equipment and components of your system, and stick to that for tag naming. Then use descriptions to document thoroughly. So, we typically divide I/O into Local and Distributed, and it’s common to use L and D to denote them. Since we only have Local I/O in this tutorial, let’s start our input and output tag names with L. It’s also normal to denote whether a tag is an input or an output, so we can make the input tags start with LI and the output tags start with LO. Finally, we typically want to know what slot number each I/O card is in. Since the processor will be in slot 0, let’s put the input card in slot 1 and the output card in slot 2. We’ll put the motion card in slot 3, and let’s use M to denote it as motion, rather than an I or an O. Here are the names I’ll use for the input cards: 1756-IB16: LI01 1756-OB16I: LO02 1756-M02AE: LM03 In a later section of the tutorial, I’ll describe how to setup tags that will match these card names. That will make everything consistent. For now, if we were labeling wires in the panel, I would suggest using LI01.0 as the first input, LI01.1 as the second input, etc., and LO02.0 as the first output, etc. Let’s start by adding the input card. Locate the I/O Configuration folder in the controller organizer window: Since this is local I/O, it’s connected straight into the backplane of the rack. So when we add the new card, we have to add it to the backplane, not as a child of the processor. A ControlLogix system can

description

AB PLC for Engineer & Technician

Transcript of Adding IO Cards

Page 1: Adding IO Cards

Adding I/O Cards

Normally when you’re creating a new project, you’ll be starting from an electrical design. I didn’t

bother creating one for this tutorial, but assume we’re dealing with the following:

One 16 Point Input Card (1756-IB16)

One 16 Point Output Card (1756-OB16I)

One Motion Control Card (1756-M02AE)

Before we add them, realize that we need to give each one a name. Naming of devices and I/O is a

Big Deal ™ in the design of a control system. Consistency is important. Specifically, it’s important that

it’s easy to identify the device, I/O wire, input point, and the contact or coil in the program with each

other. Ideally, a person who has to look at the program later just wants to find a tag name in the

program that matches the wire number or device name in the real world.

I’m also a fan of short tags and long descriptions. When you’re trying to fit lots of logic on one rung

without wrapping, it’s helpful to have short tag names. If you came from the SLC 500 side, you’ll

appreciate the conciseness of B3:5/0. Programmers who are new to RSLogix 5000 tend to create

Really_Long_Tag_Names_Just_Because_They_Can. That’s really bad practice. Come up with short

forms for all the equipment and components of your system, and stick to that for tag naming. Then

use descriptions to document thoroughly.

So, we typically divide I/O into Local and Distributed, and it’s common to use L and D to denote

them. Since we only have Local I/O in this tutorial, let’s start our input and output tag names with L.

It’s also normal to denote whether a tag is an input or an output, so we can make the input tags start

with LI and the output tags start with LO. Finally, we typically want to know what slot number each

I/O card is in. Since the processor will be in slot 0, let’s put the input card in slot 1 and the output

card in slot 2. We’ll put the motion card in slot 3, and let’s use M to denote it as motion, rather than

an I or an O. Here are the names I’ll use for the input cards:

1756-IB16: LI01

1756-OB16I: LO02

1756-M02AE: LM03

In a later section of the tutorial, I’ll describe how to setup tags that will match these card names.

That will make everything consistent. For now, if we were labeling wires in the panel, I would

suggest using LI01.0 as the first input, LI01.1 as the second input, etc., and LO02.0 as the first output,

etc.

Let’s start by adding the input card. Locate the I/O Configuration folder in the controller organizer

window:

Since this is local I/O, it’s connected straight into the backplane of the rack. So when we add the new

card, we have to add it to the backplane, not as a child of the processor. A ControlLogix system can

Page 2: Adding IO Cards

actually support multiple processors in one rack so processors and I/O cards are peers now. Right

click on the 1756 Backplane item in the tree and you’ll see an option for a “New Module…”:

Click on “New Module…”. That’s going to pop up the Select Module Dialog:

You can browse for the I/O module you want, but since we know the catalog number, just click the

Find… button (highlighted above). You’ll get a simple Find Text dialog box that pops up. Enter IB16 in

the text box:

Click the Find Next button, and you’ll be back at the Select Module Dialog with the 1756-IB16 card

highlighted:

Page 3: Adding IO Cards

Click OK in the Select Module Dialog. For some unknown reason, it needs to know right now what

the Major Revision number of the module will be (even though chances are you’re writing this

program before the parts have been ordered, let alone arrived). In general, always pick the newest

revision. If you’re buying new hardware for this project, chances are that’s what you’ll get. You can

always change it later by deleting and re-adding the card.

Click OK and you’ll get the New Module Dialog:

Page 4: Adding IO Cards

Enter the card name we chose above (LI01) into the Name field and check that the slot number is

correct (it should default to 1, which is right), and click OK. You’ll now see the new module hanging

off the backplane:

You’ll also see the new Module Properties Window:

Page 5: Adding IO Cards

The defaults are quite reasonable for 99% of the applications I’ve seen, so just click OK to close it.

Now follow exactly the same procedure to add the output card and the motion card. If you’re

successful, it should look like this:

Now double click on Controller Tags near the top of the controller organizer window, and you’ll

notice that by adding these cards, it has automatically created several tags that you can access to

interact with these cards:

Normally we don’t interact with these tags directly (for reasons I will outline later). For now, go

ahead and poke around in them to see what’s there. You’ll see that it only created tags for the input

and output card. The motion card requires us to create an Axis before we see any tags. We’re going

to do that in the next section of the tutorial.