A Single Pole, Double Throw (SPDT) switch routes one common (COM) input to one of two selectable outputs: Normally Open (NO) or Normally Closed (NC). Whether you are wiring a 120V AC manual transfer switch, building a 12V automotive relay harness, or debugging an ESP32 GPIO button matrix, correctly reading the SPDT symbol on your schematic prevents dead shorts and miswired logic.

Because switch symbology varies wildly depending on whether you are looking at an American residential blueprint, a European industrial panel diagram, or a Japanese consumer electronics schematic, relying on a single standard will eventually lead to a miswire. Below is the definitive reference for identifying, interpreting, and testing SPDT components across all major global standards.

The SPDT Symbol & Pinout Reference Table

The table below maps the schematic symbol you see on paper to the physical terminals you hold in your hand. Keep this bookmarked when cross-referencing datasheets and wiring diagrams.

Standard / Region Schematic Symbol Visual Physical Pinout Mapping Typical Real-World Application
IEC 60617 (EU, UK, AU, Global Industrial) Rectangular box with a diagonal line crossing a stationary contact (Form C 'changeover' symbol) Relays: 11 (COM), 12 (NC), 14 (NO)
Switches: COM, NO, NC
EU/UK industrial control panels, modern global PLC schematics, DIN-rail terminal blocks
ANSI/IEEE 315 (US, Canada, NEMA) Hinged arm (pole) pivoting between two stationary dots (throws), often with a mechanical linkage line C (Common), NO (Normally Open), NC (Normally Closed) US/Canada residential wiring, commercial HVAC controls, US military schematics
DIN 72552 / ISO (Global Automotive) Standardized relay block diagram showing internal coil and switch contacts 30 (COM), 87 (NO), 87a (NC), 85/86 (Coil) 12V/24V automotive wiring, off-road builds, marine DC panels, Bosch-style 5-pin relays
JIS C 0617 (Japan, Legacy Electronics) Similar to ANSI hinge-arm, but frequently enclosed in a dashed box indicating a mechanical or magnetic actuator COM, NO, NC (often numbered 1, 2, 3 on PCB footprints) Legacy Japanese consumer electronics, vintage audio equipment, older automotive ECUs

Rows People Get Wrong (And How to Fix Them)

Even experienced makers and journeymen misinterpret specific SPDT configurations. Here are the most common points of failure when translating the SPDT symbol to physical wiring.

Mistake 1: The 'Middle Pin is Always COM' Myth

On a standard through-hole slide switch (like the CUI JS202011SCQN), the three inline pins are indeed NO, COM, NC from left to right. However, on PCB-mount toggle switches (like the ubiquitous C&K 7100 series), the physical pin layout depends entirely on the termination style. On a right-angle PC mount variant, the COM pin is often offset to the center row to prevent solder bridging, while on a vertical mount, it may be on the edge. Always verify the specific manufacturer's footprint drawing; never assume the middle physical pin is COM without checking the datasheet.

Mistake 2: Confusing Relay NO/NC with Mechanical Switch NO/NC

In a mechanical toggle switch, 'Normally' refers to the physical resting position of the actuator (e.g., the toggle flipped down, or the pushbutton released). In an electromechanical relay (like the Omron G2R-1-E or Songle SRD-05VDC-SL-C), 'Normally' refers to the state of the contacts when the coil is de-energized. If you wire a safety interlock to the 'NC' pin of a relay assuming it means 'closed when the machine is off', but the relay logic is inverted in your PLC code, you will create a critical safety failure. Always trace the SPDT symbol back to the coil driver to understand what 'normal' actually means in that specific circuit state.

Mistake 3: Misreading IEC Form C as DPDT

The IEC rectangular box symbol for an SPDT (Form C) switch looks like a single rectangle with a diagonal line. Beginners often confuse this with a DPDT (Double Pole, Double Throw) symbol, which consists of two mechanically linked rectangles. If the dashed mechanical linkage line connecting two IEC switch boxes is missed due to poor print quality or a faded screen, you might wire a single-pole circuit into a dual-pole load, leaving half your circuit unswitched.

Safe Interpretation When Markings Are Faded or Missing

When salvaging components, working on legacy equipment, or dealing with cheap unbranded switches where the silkscreen has rubbed off, you must empirically verify the terminals. Do not guess based on physical pin position.

⚠️ SAFETY WARNING: Before probing any switch with a multimeter, ensure the circuit is completely de-energized. Turn off the breaker, apply lockout/tagout (LOTO) if applicable, and verify the circuit is dead using a known-good non-contact voltage tester or by measuring line-to-neutral and line-to-ground with your DMM. Never measure continuity on a live circuit; you will blow your multimeter's internal fuse or destroy the meter.

Step-by-Step Identification Protocol:

  1. Set your DMM to Continuity Mode: Use the setting with the diode/soundwave icon. Short your probes together to verify the meter beeps and reads < 1.0 ohm.
  2. Identify the Common (COM) Terminal: Place one probe on Pin 1 and the other on Pin 2. Toggle the switch. If it beeps in one state but not the other, one of those pins is COM. Move the second probe to Pin 3. Toggle again. The pin that shows continuity to both of the other pins (depending on the switch state) is your COM.
  3. Identify NO and NC: Leave one probe on COM. Place the other probe on one of the remaining pins. Check the physical actuator. If the switch is a pushbutton, 'normal' is unpressed. If it is a toggle, 'normal' is typically the down or un-actuated position. If the meter reads open (OL) in the normal position, that pin is NO. If it reads closed (< 0.5 ohms) in the normal position, that pin is NC.
  4. Check for Pitted Contacts: A healthy mechanical switch contact will read < 0.5 ohms. If your DMM reads 2 to 10 ohms across a closed contact, the internal metal is pitted or carbon-fouled. Replace the switch immediately, especially on low-voltage DC logic circuits (like 3.3V ESP32 GPIOs) where that extra resistance will cause a severe voltage drop and phantom triggering.

Regional Standards: Which One Applies to Your Region?

Knowing which standard governs your local electrical drawings prevents catastrophic misinterpretations, especially when importing machinery or reading foreign repair manuals.

  • North America (US & Canada): You will primarily encounter ANSI/IEEE 315 and NEMA standards. Schematics use the 'hinge and dot' method. If you are pulling permits for residential or commercial wiring, your local AHJ (Authority Having Jurisdiction) expects ANSI-style diagrams. For a deeper dive into US switch classifications, refer to the All About Circuits switch reference guide.
  • Europe, UK, Australia, and Global Industrial: The IEC 60617 standard dominates. Panel builders and PLC programmers use the rectangular box symbols. The IEC maintains a comprehensive database of standard graphical symbols which is invaluable for decoding imported European control panels.
  • Automotive & Marine (Global): Regardless of your country, 12V/24V DC automotive wiring almost universally defaults to DIN 72552 terminal numbering (30, 87, 87a). If you are wiring a winch, off-road light bar, or marine bilge pump, ignore IEC and ANSI schematic symbols and look strictly for the DIN pin numbers stamped into the relay housing.

Ultimately, the SPDT symbol is just a graphical representation of a physical mechanical action. When in doubt, bypass the schematic entirely, isolate the component, and let your multimeter's continuity mode tell you exactly how the internal brass contacts are moving.