PLC
Sequential
function
1
2 November 29, 2024
1. Keep
2. Set/Reset
3. Jump
4. Interlock
5. Differentiate Up/Down
6. Move
7. Shift Register
3 November 29, 2024
1. KEEP(11)
KEEP instruction is used to maintain the
status bit operation based on two state
implementation (execution condition).
KEEP (11) operates like a relay latch
(Latching Relay), which is set by S and reset
by R.
It maintains an ON or OFF state of a bit until
one of its two inputs sets or resets it.
In order to set OMRON PLC, the instruction is
the KEEP FUN 11.
4 November 29, 2024
Address Instruction Operand / Data
00000 LD 00002
00001 LD 00004
00002 FUN (11) HR 0000
00003 LD HR 0000
00004 OUT 10004
00005 FUN (01)
LD 00004 LD 00002 OUT 10004
Reset Set Out
OFF ON ON
OFF ON
ON ON OFF
OFF OFF
5 November 29, 2024
2. SET/RESET
SET and RESET instruction will change the
status of bit operations only when the
implementation is ON.
In the OFF condition, the instructions will
not change the status bit operation.
00000
SET 10000
00001
RESET 10000
6 November 29, 2024
3. JUMP