Micrologix 1500 bit to say PLC is on?

rustydud

Member
Join Date
Mar 2011
Location
USA
Posts
40
Hello
I purchased a brand-new Micrologix 1500 controller for my project.
I have a line of code I want to execute anytime the PLC is active. Does the PLC have a "status" bit of some sort that I can use in my code to tell me "PLC = running"?

S:1/0 N.C. and S:1/1 N.O. in series and this caused the outputs to "chatter".
 
You appear to be talking about 'code' in the PLC. If it is being executed then the PLC is 'running'.

If the PLC stops 'running' then the outputs will be off.
 
If you put a line of code in file 2, it will be scanned anytime the PLC is "Running" (if that is what you mean by "active").

If the PLC isn't running, the code won't get scanned, but whatever bit you put on the output of the rung will remain in the state it was when the PLC was running.

However, if you can afford the luxury of using one of the outputs, your "line of code" could simply be "OTE O:0/0", which will energise the relay whenever the PLC is running, and if it stops running, or the power goes off, the output relay will "drop-out".

EDIT : I obviously type slower than Bernie :)
 
Where did you get those bits from? They are only two out of 5 for the mode status of the processor, and using them as you are isn't going to work.

Run Modes:

Code:
MVM S2:1 31 N7:0 BST EQU N7:0 1 OTE (In_Remote_Run) NXB
                 EQU N7:0 30 OTE (In_Hard_Run) BND

For all the codes and bit definitioons, see the table on page 392 of publication 1762-RM001G-EN-P.
 

Similar Topics

Hello to everybody, I want to show the forced bit of Rslogix 500 in RSview32. I am using Micrologix 1500 28BXB.Is it possible Thanx
Replies
1
Views
1,941
I have been working on this for a while now and I can't seem to get it. I was finally able to view the 1500 on the PanelView under the serial...
Replies
1
Views
82
Hello, I have a 1764 1500 LSP Series A that keeps failing with DTL_E_FAIL I/O error. Searching around it seems there's a weird issue specifically...
Replies
2
Views
106
Good Day i Have Micrologix 1500 LSP, and I want to get data from plc and send it through Modbus RTU slave; I have only ch0 on that plc I Order...
Replies
6
Views
917
Hello folks, Hope everyone is doing fine. I got an OMRON NS10-TVOOB-V2 hmi screen last day and planning to use it with Micrologix 1500. 1. Is...
Replies
4
Views
1,208
Back
Top Bottom