Bit Setting Limit in RSLogix 500

bob_g

Member
Join Date
Apr 2007
Location
Kansas City, MO
Posts
2
I wrote a program for a SLC5/05, downloaded it and it won't set the bit when I'm online with the program. Is there a limit to the addresses that bits can have? Do bit addresses have to be unique, meaning I can't have two coils with the same bit address on different rungs? The logic kinda looks like this:

-----------| |------------| |-----------------------------( )--
I:1/1 I:1/2 B3/93

When online with the program I can see that inputs I:1/1 and I:1/2 get "energized" when the input is activated but the coil B3/93 never energizes. I have a couple other rungs below where the coil has the same bit address. Is this the problem? I thought I could do that. I have other bits in the program with higher unique addresses like B3/177, B3/188 and so forth and they work fine. What am I doing wrong? I'm kinda new to all this and any help you could give me would be greatly appreciated.

Thanks
 
Last edited:
The output coil should not be used in more than one location.
The rung you are looking at may be true, but the one later on is false, so the plc will go with the last one, always. The plc scans the ladder and then updates the image file, since the later rung is false, the output coil is false.

You should combine the logic in parallel branches both "feeding" the same output.

Something like this:



----] [------------] [------( )--
|
----]/[------] [---------



edit: never can get the ladder to look correct.
 
Last edited:
Ken's the Man!

Thanks Ken that makes total sense. I should have known that. I really appreciate it. Yeah I would have paralleled that rungs together but the preceeding rungs are very long and paralleling them might be a pain.

I guess I'll just give different addresses to the bits and parallel them in a later instruction to set a bit essentially like your saying.

Yeah you are right edit didn't get the rung to look right and I tried like 5 times.

Thanks again
 

Similar Topics

Finishing up my first project with a Do-More PLC to install tomorrow morning. I'm working on small details.... like automatically adjusting for...
Replies
5
Views
1,880
I have a bit of a problem that I can't seem to find the answer to in my literature. I have an AB 1756-IFX0F2F Series A Analog Combination module...
Replies
9
Views
3,285
Hi, For me this is easy in S7, but I'm struggling to find out how to do it in S5. Can you simple assign a output coil as a data bit, or just...
Replies
4
Views
1,465
Hello, I have a need to set one binary element inside an integer. Say, I have N7:0 and it contains 16 bits and I want to modify just N7:0/7 to...
Replies
29
Views
6,414
Hi all, I have an application where the plant PLC is communicating via Ethernet/IP to 3 different field PLC's. The Field PLC's are all Micrologix...
Replies
6
Views
3,428
Back
Top Bottom