A timer on delay (often abbreviated as TON) is a control device that keeps its output contacts open for a specific, preset duration after receiving an input voltage, only closing them to energize the load once that time has elapsed. In a real circuit or installation, a TON changes the temporal sequence of power delivery, preventing simultaneous inrush currents from tripping upstream breakers or ensuring mechanical preconditions—like a hydraulic brake releasing or a fan reaching full RPM—are met before a heavy load engages.
The Core Mechanism: How an ON-Delay Timer Actually Works
At its core, a TON relay separates the input trigger from the output switching using a timing element. When you apply the rated control voltage (e.g., 24V DC or 120V AC) to the input terminals, an internal clock starts. During this countdown, the output contacts remain in their normal state (Normally Open contacts stay open; Normally Closed contacts stay closed). Only when the preset time reaches zero do the output contacts change state.
Think of it like a microwave oven door switch combined with a digital countdown. You press start (input voltage applied), but the magnetron (output load) doesn't receive high voltage until the countdown hits zero. If you open the door or hit cancel before zero (removing the input voltage), the timer instantly resets to zero, and the magnetron never fires.
Older pneumatic or motor-driven timers used air dashpots or synchronous motors to physically delay contact movement. Modern DIN-rail TON relays (like the Omron H3Y or Schneider Zelio series) use microcontrollers and solid-state optocouplers or internal miniature relays to switch the output, offering precision down to 0.1 seconds and immunity to mechanical vibration.
Worked Numeric Example: Sizing and Setting a TON Relay
Let's look at a standard industrial sequencing task: delaying the engagement of a 3-phase motor contactor to allow a soft-start circuit to stabilize. We are using a 24V DC control circuit.
• Timer: Omron H3Y-2 (24VDC input, DPDT output, 5A contact rating)
• Contactor: Schneider TeSys LC1D18 (18A AC-3 rating, 24VDC coil)
• Preset Delay: 3.0 seconds
The Math:
The Schneider LC1D18 contactor coil has an inrush power of 70 VA and a sealed (holding) power of 7 VA. Because we are operating on a 24V DC system, we must calculate the DC current draw. While VA is technically an AC metric, DC coil inrush is roughly equivalent to the AC VA rating divided by the voltage for sizing purposes.
- Calculate Inrush Current: 70 VA / 24V = 2.91 Amps.
- Calculate Holding Current: 7 VA / 24V = 0.29 Amps.
- Verify TON Relay Capacity: The Omron H3Y-2 output contacts are rated for 5A at 250VAC / 24VDC.
Since the 2.91A inrush is well below the 5A contact rating of the TON relay, the relay will successfully switch the contactor without welding its internal contacts. If we were using a larger contactor (e.g., an LC1D38 with a 200 VA inrush), the 8.3A spike would destroy the H3Y-2's output contacts. In that case, you would use the TON relay to trigger an intermediate ice-cube relay with higher contact ratings.
Where You Meet Timer On Delay in Practice
You will encounter TON logic across almost every electrical discipline, though the physical implementation changes depending on the environment:
- HVAC Systems: TON relays are frequently used in economizer sequences to delay the opening of fresh air dampers until the supply fan has proven it is running (via a sail switch or current sensor), preventing the duct from pressurizing against a closed damper.
- Industrial Motor Control: In Star-Delta motor starters, a TON relay is the critical transition timer. It cuts power to the Star contactor, waits 50 to 100 milliseconds (the "dead time" to allow arcs to extinguish), and then pulls in the Delta contactor.
- Embedded Electronics (ESP32/Arduino): On the bench, you rarely use a physical relay for logic-level delays. Instead, you write a software TON using
millis()in C++ to debounce a switch or delay a MOSFET gate signal. For pure hardware analog delays, the classic Texas Instruments LM555 timer configured in monostable mode acts as a precise TON circuit.
Real-World Scenario Walkthrough: The Generator Stalling Incident
Theory is clean; jobsites are messy. Here is a real-world failure involving a TON relay that highlights a common wiring trap.
The Setup:
A 20kW diesel standby generator powers a remote telecom building. The building has two 5kW resistive duct heaters. The generator's alternator can handle a maximum single-step load of 60% of its rated capacity (12kW) without severe voltage dip. If both 5kW heaters (10kW total) engaged simultaneously, the sudden step-load would cause the generator RPM to bog, voltage would sag below 190V, and the under-voltage relay would trip the main breaker, dropping the site.
The Numbers & Intended Outcome:
The installer added a 10-second TON relay to the Heater 2 contactor. The goal: Heater 1 engages immediately on a call for heat, and Heater 2 waits 10 seconds, keeping the step-load at a safe 5kW increment.
What Went Wrong:
The installer wired the 24VAC input power to the TON relay directly through the smart thermostat's "W2" (second stage heat) dry contact. When the temperature dropped, the thermostat closed W2, applying 24VAC to the TON relay. The 10-second countdown began. However, 4 seconds into the count, the smart thermostat initiated a brief internal Wi-Fi reboot cycle, momentarily opening the W2 relay for 800 milliseconds.
Because a true TON relay requires continuous input voltage to maintain its count, that 800ms dropout instantly reset the timer to zero. When the thermostat reconnected, the 10-second countdown started over. This happened repeatedly. The heater never turned on, and the building froze.
The Fix:
The input to a hardware TON must be a stable, continuous voltage. The installer replaced the direct thermostat feed with a standard 24VAC interposing relay (latching or continuously held by the W1 call) that provided an uninterrupted power source to the TON relay's input terminals, while the thermostat merely controlled the upstream logic.
ON-Delay vs. OFF-Delay vs. Interval: Clearing the Confusion
People frequently confuse the TON (ON-delay) with the TOF (OFF-delay) and the Interval (One-Shot) timer. Misidentifying these will result in a circuit that behaves entirely opposite to your design intent. Here is the definitive breakdown:
| Timer Type | Trigger Event | Output State During Timing | What Happens if Input Drops During Timing? | Common Use Case |
|---|---|---|---|---|
| ON-Delay (TON) | Input voltage applied | Remains OFF (open) | Timer resets to zero; output stays OFF | Staggering motor starts; anti-short cycle lockouts |
| OFF-Delay (TOF) | Input voltage removed | Remains ON (closed) | N/A (Timing only starts when input drops) | HVAC blower run-on to clear residual heat/cooling |
| Interval (One-Shot) | Input voltage applied (or edge trigger) | Turns ON immediately, then times out | Output stays ON until the preset time finishes | Sprinkler valve pulse; garage door opener relay |
For a deeper dive into the electromechanical logic symbols and ladder diagram representations of these timers, the All About Circuits digital textbook chapter on time-delay relays provides excellent schematic breakdowns.
Frequently Asked Questions
Can I use an ESP32 or Arduino instead of a hardware TON relay?
Yes, for low-voltage DC logic (3.3V or 5V). You can write a software TON using non-blocking millis() timers. However, you must isolate the microcontroller from the load using an optocoupler or a logic-level MOSFET. Never wire an ESP32 GPIO pin directly to an inductive relay coil; the flyback voltage will instantly destroy the microcontroller's silicon.
Does a TON relay consume power while it is timing?
Yes. The internal microcontroller, timing capacitor, and input optocoupler require continuous power to maintain the countdown. A standard 24VDC DIN-rail TON relay typically draws between 1W and 2W (roughly 40mA to 80mA) continuously while the input is energized, regardless of whether the output contacts have closed yet.
What happens if I apply a voltage higher than the TON relay's rating?
Unlike simple mechanical switches, modern TON relays contain sensitive internal power supplies (often switch-mode buck converters to step down 24V to 3.3V for the internal IC). Applying 120VAC to a 24VDC-rated TON relay will cause the internal varistor or capacitor to short and vent, permanently destroying the unit and potentially creating a fire hazard. Always verify the exact coil/input voltage printed on the device schematic before wiring.






