DL06 Micro PLC User Manual, 3rd Edition, Rev. E
5-17
Chapter 5: Standard RLL Instructions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
A
B
C
D
Out (OUT)
The Out instruction reflects the status of the rung (on/off) and outputs
the discrete (on/off) state to the specified image register point or memory
location.
Multiple Out instructions referencing the same discrete location should not be used since only
the last Out instruction in the program will control the physical output point. Instead, use the
next instruction, the Or Out.
In the following Out example, when input X1 is on, output Y2 and Y5 will energize.
In the following example, when X1 or X4 is on, Y2 will energize.
Aaaa
OUT
STR
$
1
B
ENT
STR
$
ENT
4
E
Y2
OR OUT
X1
Y2
OR OUT
X4
Handheld Programmer Keystrokes
Direct SOFT32
INST#
O
5
F
3
D
ENT
ENT
2
C
ENT
2
C
ENT
INST#
O
5
F
3
D
ENT
ENT
A aaa
OROUT
STR
$
1
B
ENT
OUT
GX
2
C
ENT
OUT
GX
ENT
5
F
Y2
OUT
X1
Y5
OUT
Handheld Programmer Keystrokes
Direct SOFT32
Operand Data Type
DL06 Range
A
aaa
Inputs
X
0–777
Outputs
Y
0–777
Control Relays
C
0–1777
Operand Data Type
DL06 Range
A
aaa
Inputs
X
0–777
Outputs
Y
0-777
Control Relays
C
0–1777
DS
Usied
HPP Used
DS
Used
HPP Used
Direct
SOFT
Direct
SOFT
Or Out (OROUT)
The Or Out instruction allows more than one rung of discrete logic to
control a single output. Multiple Or Out instructions referencing the
same output coil may be used, since all contacts controlling the output
are logically OR’d together. If the status of any rung is on, the output
will also be on.