A delay off timer is a control device that immediately activates its output load when the input trigger is applied, but keeps the load energized for a specific, preset duration after the input trigger is removed. In a real circuit or installation, this component changes a hard electrical cutoff into a graceful cooldown period, allowing motors, cooling fans, or warning alarms to finish their operational cycle after the main control switch is flipped off. The most common mistake makers and junior technicians make is confusing this with a delay-on timer (Timer On-Delay, or TON), which does the exact opposite: it waits to turn the load on after the switch is triggered, rather than keeping it on after the switch is released.
The Core Logic: Off-Delay vs. On-Delay vs. Interval
To specify the right timer for a control panel or a custom PCB, you need to reference the IEC 61812 standard for industrial time relays. The standard defines specific letter codes for timing functions. An off-delay timer is typically classified under Function C (or sometimes Function E, depending on whether the trigger must be maintained). Understanding the difference between the primary timing modes prevents catastrophic sequencing errors in automation and HVAC systems.
| Timer Mode | IEC Function Code | Input Trigger Behavior | Output Behavior | Typical Application |
|---|---|---|---|---|
| Off-Delay (TOFF) | C / E | Applied: Output ON immediately. Removed: Timing starts. |
Stays ON during timing, then turns OFF. | Exhaust fan cooldown, CNC spindle coolant delay. |
| On-Delay (TON) | A | Applied: Timing starts. Removed: Output OFF immediately. |
Stays OFF during timing, then turns ON. | Motor star-delta starting, alarm silence delays. |
| Interval (One-Shot) | B / I | Applied: Output ON, timing starts. Trigger can drop. | Stays ON for fixed time, then turns OFF regardless of input. | Automatic door openers, conveyor indexing. |
| Repeat Cycle | F / Flasher | Applied: Continuous timing loop starts. | Cycles ON and OFF symmetrically or asymmetrically. | Beacon lights, lubrication pump pulsing. |
Worked Numeric Example: Sizing an Off-Delay Relay for an Exhaust Fan
Let's look at a practical installation: wiring an off-delay timer to keep a 24VDC exhaust fan running in a chemical storage closet after the main light switch is turned off. This ensures fumes are cleared before the room is sealed.
The Parameters:
- Room Volume: 500 cubic feet.
- Fan Rating: 100 CFM (Cubic Feet per Minute) at 24VDC.
- Fan Full Load Amps (FLA): 1.8A.
- Requirement: 3 complete air changes before the fan shuts off.
5 minutes × 3 changes = 15 minutes total delay time.
We select a Finder 80.01.0.240.0000 multi-function time delay relay, set to the Off-Delay function via its DIP switches, with the time dial set to 15 minutes. The relay coil is rated for 24VDC, and the internal contacts are rated for 6A at 250VAC. But here is where inexperienced installers cause fires: motor inrush current.
A DC motor draws significantly more current at startup than its FLA. The locked-rotor or inrush current for this fan is approximately 6 times the FLA:
1.8A × 6 = 10.8A inrush.
Where You Meet This in Practice
Off-delay logic is ubiquitous in systems where thermal management, fluid dynamics, or safety sequencing require a process to outlive the primary user input.
- HVAC and Building Automation: Bathroom exhaust fans and commercial kitchen hoods use off-delay timers to clear moisture and grease-laden air after the occupant leaves and flips the switch. Modern smart switches (like the Lutron Maestro) have this built into their microcontroller firmware, while older installations rely on pneumatic dashpot timers or electronic wall-box relays.
- CNC Machining and Metalworking: When an operator stops a CNC spindle, the flood coolant pump must continue running for 30 to 60 seconds. This off-delay flushes metal chips from the cutting zone and cools the tooling to prevent work-hardening of the metal part.
- Automotive 'Follow-Me-Home' Lighting: Headlight delay modules keep the high-beams or fog lights illuminated for 30–90 seconds after the ignition is turned off and the driver locks the doors, providing pathway illumination.
- Telecom and Server Racks: Cooling fans in enclosed server racks are often wired with off-delay thermal relays. Even if the primary thermostat drops below the threshold, the fans run for an extra 3 minutes to eliminate localized hot spots near the CPU heat sinks.
Bench Troubleshooting: When the Off-Delay Fails to Time Out
If your off-delay timer refuses to drop the load after the preset time elapses, do not immediately assume the relay is dead. In both microcontroller-driven circuits and industrial DIN-rail setups, the fault usually lies in the trigger circuit.
- Ghost Triggering from Capacitive Coupling: If your input trigger switch is located hundreds of feet away from the timer (common in large commercial HVAC runs), the long parallel wires act as a capacitor. When the switch opens, induced AC voltage from adjacent power lines can keep the timer's highly sensitive electronic trigger input 'floating high'. Fix: Install a 10kΩ to 47kΩ bleeder resistor across the timer's trigger input terminals (A1 and A2 or trigger/common) to bleed off phantom voltage.
- Leaky Timing Capacitor (Bench/555 Circuits): If you built a custom off-delay on a PCB using an RC network or a 555 timer, and the delay time is drifting shorter or failing to time out entirely, the electrolytic timing capacitor is likely suffering from dielectric absorption or internal leakage. Fix: Replace standard aluminum electrolytic capacitors with low-leakage tantalum or film capacitors for timing networks exceeding 5 minutes.
- Back-EMF Welding the Output: If the timer output drops out, but the load (like a DC fan or solenoid) stays on, the relay's internal mechanical contacts have likely welded together due to inductive flyback voltage. Fix: Verify you have a flyback diode (e.g., 1N4007) installed in reverse-parallel across the load coil, not just across the timer's control coil.
Frequently Asked Questions
Can I use an ESP32 or Arduino instead of a hardware off-delay relay?
Yes, and it is highly recommended for complex logic. You can read a digital input pin and use the millis() function to track the off-delay state without blocking the main loop. However, you must use a logic-level MOSFET (like an IRLZ44N) or an optocoupler to drive the physical load. Never wire a 12V/24V inductive load directly to a microcontroller's GPIO pins, as the back-EMF will instantly destroy the silicon.
What happens if power to the timer itself is lost during the delay period?
Standard electronic off-delay relays (like the Omron H3Y) lose their state and the output drops immediately if the main power supply (A1/A2) fails. If you need the load to complete its timing cycle even during a blackout, you must use a 'True Off-Delay' relay. These contain an internal supercapacitor or battery backup that powers the timing circuit and holds the relay closed until the countdown finishes, even with no external power.
For deeper reading on industrial timing standards, refer to the All About Circuits guide on time-delay relays, or consult the Electronics Tutorials sequential logic section for IC-level timing breakdowns.






