Historical Context
Ladder Logic was developed to ease the transition from relay-based control panels to PLC systems. Electricians familiar with relay logic could easily understand and troubleshoot ladder programs.
PLCs
Ladder Logic is the most widely used PLC programming language, designed to resemble electrical relay control circuits.
Ladder Logic was developed to ease the transition from relay-based control panels to PLC systems. Electricians familiar with relay logic could easily understand and troubleshoot ladder programs.
Represent input conditions that can be true or false:
--[ ]-- Normally Open Contact (NO)
--[/]-- Normally Closed Contact (NC)
--[P]-- Positive Edge (Rising Edge)
--[N]-- Negative Edge (Falling Edge)Represent outputs that can be energized or de-energized:
--( )-- Output Coil
--(L)-- Latch Coil
--(U)-- Unlatch Coil
--(P)-- Positive Edge PulseAll contacts in series must be true:
|--[Input1]--[Input2]--[Input3]--( Output )--|Any contact in parallel branches can be true:
|--[Input1]--+
| |--( Output )--|
|--[Input2]--+