Micrologix 1200 1500 Osr Instruction

PERSPOLIS

Member
Join Date
Jun 2002
Location
ontario
Posts
295
HI EVERYONE
please read if I understood correctly :

I have a rung consist of one input and one output(OSR instruction),
when input on and then off then both storage bit and output bit become set and reset thanks a lot
 
Dua Anjing said:
OSR is ONE SHOT RISING. When it sees a OFF to ON transition then OUTPUT bit will be ON for one scan only. I "think" that storgae bit will remain ON until the input goes OFF, this is how the PLC catches the OFF to ON transition
Correct
 
HI

Reviewing this thread I do not see the difference between OSR ML 1500 and SL OSR instruction. Both final output is on for one scan only except one has storage bit and slc is without it but I am not sure if I am right. Thanks
 
PERSPOLIS said:
HI

Reviewing this thread I do not see the difference between OSR ML 1500 and SL OSR instruction. Both final output is on for one scan only except one has storage bit and slc is without it but I am not sure if I am right. Thanks

The SLC OSR instruction is a conditional input instruction that is placed before the output of the rung. The equivalent instrcution in the PLC/5, ML1100, ML1200, ML1500 and CLX families is the ONS insstruction.

In the PLC/5, ML, and CLX, OSR and OSF are output instructions.

The SLC is the odd duck.

OSR code
Code:
IF Rung = TRUE then {
IF NOT STORAGE_BIT then {
	 OUTPUT = TRUE
	 STORAGE_BIT := TRUE
}
ELSE OUTPUT := FALSE
}
ELSE STORAGE_BIT := FALSE
 

Similar Topics

Please I have micrologix 1500&1200 The first time I make configuration for 1200 it was ok and i see the plc but there was on it a old programme so...
Replies
2
Views
1,606
We had a DH-485 network with a SLC 5/02, PV 550, 2 Micrologix 1200, and Mircologix 1500. I need to know how to change the nodes of the 2 1200s...
Replies
4
Views
2,832
Hey everyone, I've got what I think is just a quick question here. I'm sending some data from one micrologix to another, there are already some...
Replies
0
Views
4,855
What is the difference between the 1200 and 1500
Replies
7
Views
4,561
Hi everyone, I'm working on a project where I need to exchange data between a Siemens S7-1200 PLC and an Allen-Bradley MicroLogix 1400 PLC. The...
Replies
8
Views
644
Back
Top Bottom