An electromechanical relay is fundamentally a low-power control circuit commanding a high-power load circuit through galvanic isolation. But grabbing a random '10A relay' from a bin and wiring it to a compressor motor is a fast track to welded contacts and melted plastic. To select the right component, you have to look past the bolded marketing numbers on the casing and understand the actual physics of the contacts.

This guide breaks down the primary relay types, decodes the spec sheet, and provides a concrete decision path for wiring and load selection. Whether you are switching a 12V DC solenoid with an ESP32 or routing 240V AC to a kiln, the rules of arc suppression and thermal derating remain absolute.

Decoding Relay Types and the Spec Sheet

Before we wire anything, we need to define the hardware on the bench. The four primary relay types you will encounter in maker and industrial applications are:

  • Electromechanical Relays (EMR): The workhorse. Uses a physical copper coil and moving armature. Offers low contact resistance (<50mΩ) but suffers from mechanical bounce and arc wear.
  • Solid-State Relays (SSR): Uses an optocoupler and a TRIAC or MOSFET. Zero moving parts, silent, and immune to bounce. However, they leak a small off-state current (mA) and generate significant heat requiring heatsinks.
  • Reed Relays: Contacts are sealed in a glass tube filled with inert gas. Extremely fast switching (microseconds) and great for low-level audio/RF signals, but easily destroyed by high inrush currents.
  • Latching Relays: Uses a permanent magnet or dual-coil setup to maintain state without continuous coil power. Ideal for battery-operated IoT nodes where coil heat and milliamp draw must be minimized.

When you pull a datasheet for a standard EMR like the ubiquitous Omron G2R-1-E, you are hit with a wall of numbers. Which rating column actually governs your specific load? The answer is almost never the nominal thermal current. The governing column is the breaking capacity at your specific load's power factor.

Table 1: Omron G2R-1-E (24VDC) Spec Sheet Breakdown
ParameterTypical ValueWhy It Matters (The Governing Rule)
Coil Voltage24 VDC (Pick-up: 19.2V)Must match control circuit. Coils will pull in at 75% of nominal but drop out around 10-15%.
Contact Rating (Resistive)16A @ 250VACBaseline thermal limit for steady-state heating (e.g., a toaster or space heater).
Contact Rating (Inductive)6A @ 250VAC (cos φ=0.4)Governs motor/transformer loads. Inductive loads sustain arcs, drastically lowering safe current.
Breaking Capacity4000VA (AC)Maximum Volt-Amps the contacts can physically interrupt without the arc welding them shut.
Electrical Endurance100,000 ops (rated load)Drops to 10M+ ops for no-load switching. High inrush loads will eat this budget rapidly.

Coil vs. Contact Wiring: The Two Halves of the Circuit

A relay is two completely separate circuits sharing a magnetic bridge. Mixing up the coil side (control) and the contact side (load) is the most common beginner mistake, often resulting in sending 120V AC straight into a 3.3V microcontroller.

The Coil Side (A1 and A2)

The coil is an inductor. When you apply voltage across pins A1 and A2, current flows, building a magnetic field that pulls the armature. A typical 24VDC coil has a resistance of about 1100Ω, drawing roughly 22mA. This is too much for an ESP32 or Arduino GPIO pin to drive directly; you must use a transistor (like a 2N2222) or a driver IC (like a ULN2003).

CRITICAL DC PROTECTION: When wiring a DC coil, you must place a flyback diode (e.g., 1N4007) in parallel across the coil pins, with the cathode stripe facing the positive supply. When your transistor switches off, the collapsing magnetic field generates a massive back-EMF spike (often >100V) that will instantly punch through the silicon of your driving GPIO or MOSFET if the diode isn't there to clamp it. AC coils do not need this; they use internal shading rings to manage the zero-crossing dropout.

The Contact Side (COM, NO, NC)

The load side uses the Common (COM), Normally Open (NO), and Normally Closed (NC) terminals.
Wiring logic: Wire your load's hot/live line to COM. Wire the load's active path to NO. When the coil energizes, COM connects to NO, completing the circuit. NC is used for fail-safe circuits (e.g., an alarm that must trigger if the relay loses power).

Note on Protection: A relay is a control device, not a protective one. Unlike a circuit breaker that uses a thermal-magnetic trip curve to clear a fault, a relay subjected to a dead short will simply weld its contacts shut and destroy the coil. Always size upstream fuses or breakers to protect the relay's branch circuit based on the relay's maximum continuous thermal rating.

Load-Specific Selection: Resistive, Inductive, and Motor

The number printed on the side of the relay (e.g., '10A 250VAC') is a lie—or at least, a highly conditional truth. It only applies to purely resistive loads. Every other load type generates inrush current or sustained arcing that requires severe derating. Use the decision tree below to select your hardware.

Table 2: Relay Selection by Load Type
Load TypeInrush MultiplierGoverning Spec ColumnRecommended Hardware / Derating Rule
Resistive (Heaters, Toasters)1.0x to 1.5xNominal Thermal CurrentStandard EMR. Derate by 20% if mounted in an enclosed, unventilated DIN panel.
Inductive (Solenoids, Contactors)3x to 5xInductive Rating (cos φ=0.4)EMR with an RC snubber across the load, or an SSR. Expect contact pitting over time.
Motor (Compressors, Fans)6x (LRA)Motor FLA / LRA RatingDo not use standard PCB relays. Use a heavy-duty plug-in EMR (e.g., Schneider 8501) or a dedicated contactor.
Tungsten (Incandescent Lighting)10x to 15xTungsten / TV RatingSSR (Zero-cross type) to eliminate inrush, or a specific 'TV-5' rated EMR with silver-tin-oxide contacts.
Capacitive (LED Drivers, SMPS)20x to 50xMaking Capacity (Peak)SSR or EMR with an NTC thermistor in series to limit the initial capacitor charging spike.

As of 2026, the price gap between high-quality EMRs and basic SSRs has narrowed significantly. While a Panasonic ALDP124 latching EMR might cost around $4, a basic 40A DC-switching SSR can be found for $12-$18. If you are switching highly capacitive LED arrays or frequent-cycling solenoids, the SSR's lack of moving parts and zero arc generation usually justifies the extra cost and the mandatory heatsink.

Testing, Troubleshooting, and the Repair-vs-Replace Call

When a circuit fails, the relay is the most common mechanical point of failure. Here is how to isolate the fault using a standard digital multimeter (DMM).

Dead Testing (Power Removed)

  1. Test the Coil: Set your DMM to Ohms. Measure across A1 and A2. A 24VDC coil should read between 1000Ω and 1200Ω. If it reads 'OL' (open), the internal fine copper wire has snapped. If it reads near 0Ω, the coil is shorted internally.
  2. Test the Contacts: Set DMM to continuity. Place probes on COM and NC; you should hear a beep (< 1Ω). Place probes on COM and NO; it must read 'OL'. If COM and NO show continuity while de-energized, the contacts are welded shut from a previous overcurrent event.

Live Testing (Energized and Under Load)

Safety Warning: Ensure you are using properly rated CAT III/IV meter probes and are trained to work on live circuits before proceeding.

  1. Verify Coil Voltage: Set DMM to AC or DC Volts. Measure across A1 and A2 while the control signal is active. You must read within 10% of the nominal coil voltage. A reading of 18V on a 24V coil indicates a failing power supply or excessive voltage drop in the control wiring.
  2. Measure Contact Voltage Drop: With the relay energized and the load running, set your DMM to Millivolts (mV). Measure directly across the COM and NO terminals. A healthy relay will show a drop of less than 50mV. If you read 500mV or more, the contacts are heavily pitted or carbon-fouled, generating excess heat.

When to Repair vs. Replace

In legacy industrial panels from the 1980s, electricians would sometimes pull open-frame contactors and file the carbon pits off the copper contacts. Never do this on modern relays.

Modern EMR contacts are plated with a microscopically thin layer of silver alloy (like silver cadmium oxide or silver tin oxide) designed to resist welding and manage arc heat. Filing the contacts removes this plating, exposing the base brass or copper. The relay will fail catastrophically within a dozen switching cycles. Furthermore, breaking the seal on a sealed plastic PCB relay introduces dust and moisture, altering the dielectric breakdown voltage.

The Verdict: Always replace. A high-quality replacement like an Omron G2R or Finder 40-series costs between $2 and $6. The labor to diagnose, the risk of machine downtime, and the fire hazard of a failing contact far outweigh the cost of tossing the old unit in the e-waste bin and plugging in a fresh one.

For deeper reading on relay contact materials and arc suppression physics, refer to the All About Circuits guide on electromechanical relays, or consult the application notes in the Omron G2R datasheet. For heavy industrial motor control applications, review the Schneider Electric control relay documentation to ensure your contactor sizing aligns with NEMA and IEC utilization categories.