Reading Electrical Schematics & Ladder Logic

90 min read Training Guide

Symbol library, ladder diagrams, start/stop seal-in, one-line drawings, color code, intro to PLC ladder logic, and schematic-based troubleshooting.

Table of contents

Reading Electrical Schematics & Ladder Logic

A schematic is a map. If you cannot read the map, you cannot troubleshoot the circuit - you can only guess and swap parts. This guide walks the symbol library, teaches how to read a ladder diagram, builds a motor start/stop circuit rung by rung, and covers single-line drawings, wiring color code, an intro to PLC ladder logic, and the schematic-based troubleshooting flow that actually finds the fault.

Symbol Library

Every schematic is built from a small set of standard symbols. Learn these and 90 percent of any drawing becomes readable.


| Component          | Symbol Description                            |
|--------------------|-----------------------------------------------|
| NO contact         | Two short parallel lines, gap between them    |
| NC contact         | Two lines with a diagonal slash across        |
| Coil (relay)       | Circle with CR or R label                     |
| Motor starter coil | Circle with M label                           |
| Motor (3-phase)    | Circle with M inside, three leads             |
| Overload (OL)      | Sawtooth or heater element symbol             |
| Timer coil         | Circle with TR, TON, or TOF                   |
| Timer contact      | Contact with arrow or clock symbol            |
| Pushbutton NO      | Button over open contact                      |
| Pushbutton NC      | Button over closed contact                    |
| Selector switch    | SS with detent positions                      |
| Limit switch       | LS with cam-follower arrow                    |
| Proximity sensor   | Box labeled PROX or PE                        |
| Photoeye           | PE or eye symbol                              |
| Solenoid valve     | SOL or SV, square coil                        |
| Transformer        | Two coupled coils with iron core lines        |
| Fuse               | Rectangle or curved line, F label             |
| Disconnect         | Switch symbol, DS label                       |

Labels like CR, R, TR, TD, M, OL, PB, SS, LS, PE, SOL are loop-referenced to a specific device on the bill of materials. A schematic with CR-1 at the top of rung 3 and CR-1 as a contact down on rung 7 means the same physical relay.

Reading A Ladder Diagram

A ladder diagram looks like a ladder. Two vertical rails carry power. Horizontal rungs carry the circuits.

  • Left rail = hot (L1 or control voltage positive).
  • Right rail = neutral or return (L2, N).
  • Each rung is read left to right, just like a book.
  • Rungs are numbered top to bottom, usually starting at 1.
  • Inputs (buttons, switches, contacts) sit on the left side of the rung.
  • Outputs (coils, lamps, solenoids) sit on the right side of the rung, one output per rung.

Power has to flow from left rail, through every contact on the rung, into the coil, and back to the right rail. If any NO contact on the rung is open, power cannot reach the coil and the output is de-energized.

Contact And Coil Logic

A coil is an output device. Energize it and it pulls in all of its associated contacts.

  • NO contact of an energized coil = closed.
  • NC contact of an energized coil = open.
  • When the coil de-energizes both swap back.

A single coil can drop a dozen contacts onto other rungs. That is how one button press can start a pump, turn on a pilot lamp, and unlatch an interlock elsewhere in the circuit.

Seal-In (Latching)

A pushbutton is a momentary contact. Press it, contact closes; release it, contact opens. To keep a motor running after you let go of the start button, you wire a seal-in contact in parallel with the start button.

When you push START, the coil energizes. The coil's own NO contact (the seal-in) closes across the start button. Release the button - the seal-in holds the coil energized. The only way to stop the motor now is to break the rung somewhere: push STOP (NC button in series), trip an overload, or open the disconnect.

Worked Example: Motor Start/Stop

Read this rung left to right.

L1 ---[ STOP (NC) ]---+---[ START (NO) ]---+---( M )--- L2
                      |                    |
                      +---[ M (NO seal) ]--+
  1. Normal state: STOP is closed (NC, not pressed). START is open. M seal-in is open (coil not energized). Rung is broken at START. M coil is off.

  2. Press START: START closes. Now path is L1 - STOP - START - M coil - L2. Power flows. M coil energizes.

  3. M coil energized: Every M NO contact in the circuit closes, including the seal-in wired parallel to START.

  4. Release START: START opens. Seal-in stays closed because the coil is still energized. Path is now L1 - STOP - seal-in - M coil - L2. Motor keeps running.

  5. Press STOP: STOP opens. Rung is broken at STOP regardless of start or seal-in state. Coil drops out. Seal-in opens. Circuit is back to the normal state. Motor stops.

  6. Overload trip: OL contact (usually a separate NC in series with the coil) opens. Coil drops out. Motor stops even if the operator is holding START.

That is the single most common circuit in industrial electrical work. If you can draw it and explain it, you are already ahead of most first-year apprentices.

One-Line Diagrams

Also called single-line diagrams. Used for power distribution, not control.

  • One line represents a three-phase circuit (three conductors plus a neutral or ground collapsed into one).
  • Shows the utility service, main disconnect, transformer, main switchboard, feeders, branch panels, and loads.
  • Each device is called out with size, rating, and tag.
  • Does not show the minute-by-minute control logic.

When a foreman hands you a one-line, he is telling you how power gets from the pole to the motor. When he hands you a schematic, he is telling you how the motor decides when to run.

Wiring Diagrams vs Schematics

Wiring diagram: shows physical layout. Devices are drawn where they live in the panel. Wires are drawn as they run. Wire colors and terminal numbers are labeled. You use this to pull a wire or trace a loose connection.

Schematic: shows logic, not layout. Contacts and coils are drawn where the logic puts them, not where they physically sit. You use this to understand WHY the circuit behaves the way it does.

Every good install has both. New apprentices often want to skip the schematic and stare at the wiring diagram. It is wrong. The schematic is what tells you whether a fault is a failed contact, a failed coil, a stuck relay, or a missing interlock.

Typical Color Code


| System                | Phase Colors            | Neutral | Ground |
|-----------------------|-------------------------|---------|--------|
| 120/240 1-phase       | Black, Red              | White   | Green  |
| 120/208 3-phase wye   | Black, Red, Blue        | White   | Green  |
| 277/480 3-phase wye   | Brown, Orange, Yellow   | Gray    | Green  |
| 240V 3-phase delta    | Black L1, Orange L2 (high leg), Red L3 | White | Green |
| Control, DC +         | Red                     | -       | -      |
| Control, DC -         | Black                   | -       | -      |
| Control, AC hot       | Red                     | White   | Green  |

Orange on 240V delta is the high leg - 208V to neutral, not 120V. Hook a 120V load across that and you burn it up. Always verify with a meter before landing a neutral.

Introduction To PLC Ladder Logic

Programmable logic controllers took over most hard-wired relay logic over the last 40 years. The good news: PLC ladder diagram (LD) programming language maps almost one-to-one onto the relay ladder you already know.


| Relay Ladder         | PLC Ladder Instruction           |
|----------------------|----------------------------------|
| NO contact           | XIC (examine if closed)          |
| NC contact           | XIO (examine if open)            |
| Coil (output)        | OTE (output energize)            |
| Latch coil           | OTL (latch)                      |
| Unlatch coil         | OTU (unlatch)                    |
| Time-on-delay relay  | TON                              |
| Time-off-delay relay | TOF                              |
| Counter              | CTU (up) or CTD (down)           |

Each rung still reads left to right. Inputs on the left, outputs on the right. The key difference: the "contact" is examining a bit in memory, not a physical metal contact. The bit might be mapped to a real input card terminal (a pushbutton wired to input I:1.0/5), or it might be an internal boolean (B3:0/0). Either way, the logic rung still has to be true end-to-end for the output bit to turn on.

TON timer reads as: when the rung is true, start counting. When the accumulated time reaches the preset, the done bit (DN) goes true. A TON DN bit on a later rung can then enable the next step in a sequence.

Troubleshooting With A Schematic

This is the habit that separates a technician from a parts swapper.

  1. Read the symptom cleanly. "Motor will not start" is not the same as "motor starts and then drops out" or "motor runs but will not stop."
  2. Find the rung that drives the failed output. Find M coil on the schematic. Note every contact in series with that coil.
  3. Trace the rung left to right. At every contact, ask: is this contact supposed to be closed right now? If yes, check voltage across it with a DMM. Zero volts across a closed contact = good. Full line voltage across a supposedly-closed contact = contact is open (either the contact is bad or its parent coil is not energized).
  4. Work the interlocks backwards. If a contact is open but should be closed, find the coil that drives it. Go read the rung that drives THAT coil. Keep going until you find the rung that is broken.
  5. Verify, do not assume. A DMM in the right place answers a question definitively. A guess wastes an hour and gets you a second truck roll.
  6. LOTO first on anything above nameplate safe voltage. Lock out the disconnect, tag it, verify dead. Only then open the panel to meter live if you absolutely must - and if you do meter live, use rated PPE, a CAT III or IV rated meter, and keep one hand behind your back.

Common Real-World Schematics

An apprentice will see these inside the first six months on the tools:

  • Residential 3-way and 4-way switch layouts. Two switches control one light with 3-ways, three or more switches use 3-ways at the ends and 4-ways in the middle. Traveler conductors carry the signal between switches.
  • HVAC thermostat with gas valve and ignition control. R (24V hot), W (heat call), Y (cool call), G (fan), C (common). The board inside the furnace runs a sequence: inducer, pressure switch proved, igniter hot, gas valve open, flame sensed, blower starts.
  • Commercial lighting with occupancy sensor override. Occupancy sensor drops a contact closed, relay energizes the lighting contactor, contactor pulls in, the zone turns on. Override switch bypasses the sensor during a meeting.
  • Basic VFD start/stop with forward/reverse selector. START PB to the VFD digital input, STOP PB in series on the enable, FWD/REV selector to the direction input, RUN output drives a pilot.

If you can read and troubleshoot those four circuits, you have the foundation for almost any industrial or commercial job.

The Habit

Get a schematic in your hand every day. Read one rung every break. Mark up field-marked copies when the drawing disagrees with reality. A year in, the symbol library lives in your head and the map is where you look first - not the parts shelf.