Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use 12V delay relay module: Examples, Pinouts, and Specs

Image of 12V delay relay module
Cirkit Designer LogoDesign with 12V delay relay module in Cirkit Designer

Introduction

The 12V Delay Relay Module is a versatile electronic component designed to control high-voltage devices using a low-voltage signal. It features an integrated delay function, allowing users to set a specific time delay before the relay activates or deactivates. This makes it ideal for applications requiring timed control, such as automation systems, motor control, lighting systems, and safety devices.

Common applications include:

  • Delayed activation of motors or pumps
  • Timed lighting control
  • Sequential power-up of devices to prevent inrush current
  • Automation systems requiring precise timing

Explore Projects Built with 12V delay relay module

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
DC-DC Converter and Relay Module Power Distribution System
Image of relay: A project utilizing 12V delay relay module in a practical application
This circuit consists of a DC-DC converter powering a 6-channel power module, which in turn supplies 5V to a 2-relay module. The power module distributes the converted voltage to the relay module, enabling it to control external devices.
Cirkit Designer LogoOpen Project in Cirkit Designer
IR Sensor-Controlled Relay with LED Indicator
Image of smart TV: A project utilizing 12V delay relay module in a practical application
This circuit uses an IR sensor to control a relay module, which in turn switches a 12V blue LED on and off. The IR sensor output is connected to the signal input of the relay, enabling the sensor to activate the relay. The relay's normally closed (NC) contact is connected to the LED, allowing the LED to be powered by a 9V battery when the relay is not activated by the IR sensor.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered 4-Channel Relay Control with LED Indicators
Image of RELLAY BOARD TEST: A project utilizing 12V delay relay module in a practical application
This circuit consists of a 5V battery powering a 4-channel relay module, which controls four LEDs (red, yellow, green, and blue) through individual resistors. Each relay channel is activated by a corresponding SPST toggle switch, allowing manual control of the LEDs.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Wi-Fi Controlled Solenoid Valve with Relay
Image of fyp: A project utilizing 12V delay relay module in a practical application
This circuit uses an ESP32 microcontroller to control a 12V relay, which in turn operates a plastic solenoid valve. The ESP32 toggles the relay on and off every second, allowing the solenoid valve to open and close accordingly.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 12V delay relay module

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of relay: A project utilizing 12V delay relay module in a practical application
DC-DC Converter and Relay Module Power Distribution System
This circuit consists of a DC-DC converter powering a 6-channel power module, which in turn supplies 5V to a 2-relay module. The power module distributes the converted voltage to the relay module, enabling it to control external devices.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of smart TV: A project utilizing 12V delay relay module in a practical application
IR Sensor-Controlled Relay with LED Indicator
This circuit uses an IR sensor to control a relay module, which in turn switches a 12V blue LED on and off. The IR sensor output is connected to the signal input of the relay, enabling the sensor to activate the relay. The relay's normally closed (NC) contact is connected to the LED, allowing the LED to be powered by a 9V battery when the relay is not activated by the IR sensor.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of RELLAY BOARD TEST: A project utilizing 12V delay relay module in a practical application
Battery-Powered 4-Channel Relay Control with LED Indicators
This circuit consists of a 5V battery powering a 4-channel relay module, which controls four LEDs (red, yellow, green, and blue) through individual resistors. Each relay channel is activated by a corresponding SPST toggle switch, allowing manual control of the LEDs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of fyp: A project utilizing 12V delay relay module in a practical application
ESP32-Based Wi-Fi Controlled Solenoid Valve with Relay
This circuit uses an ESP32 microcontroller to control a 12V relay, which in turn operates a plastic solenoid valve. The ESP32 toggles the relay on and off every second, allowing the solenoid valve to open and close accordingly.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

The following table outlines the key technical details of the 12V Delay Relay Module:

Parameter Specification
Operating Voltage 12V DC
Trigger Voltage 3V–12V DC
Relay Type SPDT (Single Pole Double Throw)
Maximum Load Voltage 250V AC / 30V DC
Maximum Load Current 10A
Adjustable Delay Range 0.1 seconds to 10 seconds (typical)
Power Consumption < 1W
Dimensions Varies by model (e.g., 50mm x 26mm)
Operating Temperature -40°C to 85°C

Pin Configuration and Descriptions

The module typically has the following pin configuration:

Input Pins

Pin Name Description
VCC Connect to 12V DC power supply
GND Ground connection
IN Trigger input (3V–12V DC signal to activate)

Output Terminals

Terminal Name Description
NO (Normally Open) Connect to the load; closed when relay is active
COM (Common) Common terminal for the load
NC (Normally Closed) Connect to the load; closed when relay is inactive

Usage Instructions

How to Use the 12V Delay Relay Module in a Circuit

  1. Power the Module: Connect the VCC pin to a 12V DC power supply and the GND pin to ground.
  2. Connect the Load:
    • For devices that should activate after the delay, connect the load between the NO (Normally Open) terminal and COM (Common).
    • For devices that should deactivate after the delay, connect the load between the NC (Normally Closed) terminal and COM.
  3. Set the Delay: Adjust the potentiometer on the module to set the desired delay time. Turning the potentiometer clockwise typically increases the delay, while turning it counterclockwise decreases it.
  4. Trigger the Relay: Apply a low-voltage signal (3V–12V DC) to the IN pin to activate the relay. The relay will switch after the set delay time.

Important Considerations and Best Practices

  • Power Supply: Ensure the power supply provides a stable 12V DC to avoid erratic behavior.
  • Load Ratings: Do not exceed the maximum load voltage (250V AC / 30V DC) or current (10A) to prevent damage to the relay.
  • Delay Adjustment: Use a small screwdriver to carefully adjust the potentiometer. Avoid applying excessive force.
  • Isolation: For safety, ensure proper isolation between the high-voltage load and the low-voltage control circuit.

Example: Using the Module with an Arduino UNO

The 12V Delay Relay Module can be easily interfaced with an Arduino UNO for automation projects. Below is an example code to trigger the relay with a 5-second delay:

// Example: Controlling a 12V Delay Relay Module with Arduino UNO

const int relayPin = 7; // Pin connected to the IN pin of the relay module

void setup() {
  pinMode(relayPin, OUTPUT); // Set relayPin as an output
  digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}

void loop() {
  digitalWrite(relayPin, HIGH); // Trigger the relay
  delay(5000); // Wait for 5 seconds (adjust as needed)
  digitalWrite(relayPin, LOW); // Turn off the relay
  delay(5000); // Wait for 5 seconds before repeating
}

Note: Ensure the Arduino's ground (GND) is connected to the relay module's ground (GND) for proper operation.

Troubleshooting and FAQs

Common Issues and Solutions

  1. Relay Does Not Activate:

    • Verify that the power supply is providing a stable 12V DC.
    • Check the trigger voltage on the IN pin (should be between 3V and 12V DC).
    • Ensure the potentiometer is not set to an excessively long delay.
  2. Relay Activates Erratically:

    • Check for noise or fluctuations in the power supply.
    • Ensure proper grounding of the module and connected devices.
  3. Load Does Not Operate:

    • Verify the wiring of the load to the NO/NC and COM terminals.
    • Ensure the load does not exceed the relay's voltage or current ratings.

FAQs

Q: Can I use this module with a 5V power supply?
A: No, the module requires a 12V DC power supply for proper operation. However, the trigger input can accept signals as low as 3V DC.

Q: How do I increase the delay time beyond 10 seconds?
A: Some modules allow for delay range extension by replacing the onboard timing capacitor. Refer to the module's datasheet for details.

Q: Is the relay module opto-isolated?
A: Many 12V delay relay modules include opto-isolation for improved safety and noise immunity. Check your specific module's datasheet to confirm.

Q: Can I use this module to control a 220V AC appliance?
A: Yes, as long as the appliance's current does not exceed 10A and proper safety precautions are followed.