

The QF-RD21H Time Delayed Relay is a versatile electronic component designed to activate after a preset delay, enabling precise timed control of electrical circuits. This relay is widely used in automation, industrial control systems, and home automation projects where timing functions are critical. Its ability to delay activation makes it ideal for applications such as motor control, lighting systems, and sequential circuit operations.








The QF-RD21H Time Delayed Relay is built to handle a variety of timing and load requirements. Below are its key technical details:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC / 24V DC / 110V AC / 220V AC (varies by model) |
| Contact Type | SPDT (Single Pole Double Throw) |
| Contact Rating | 10A @ 250V AC / 10A @ 30V DC |
| Timing Range | 0.1 seconds to 10 minutes (adjustable) |
| Power Consumption | < 1W |
| Operating Temperature | -20°C to +60°C |
| Dimensions | 70mm x 40mm x 25mm |
The QF-RD21H relay typically has 5 pins for connection. Below is the pinout description:
| Pin Number | Label | Description |
|---|---|---|
| 1 | VCC | Positive power supply input |
| 2 | GND | Ground connection |
| 3 | Trigger | Input signal to start the delay timer |
| 4 | NO (Normally Open) | Connect to the load; closes after delay |
| 5 | COM (Common) | Common terminal for the relay contacts |
The QF-RD21H can be easily integrated with an Arduino UNO for automated timing control. Below is an example code snippet:
// Example: Controlling the QF-RD21H Time Delayed Relay with Arduino UNO
const int relayTriggerPin = 7; // Pin connected to the Trigger pin of the relay
const int delayTime = 5000; // Delay time in milliseconds (5 seconds)
void setup() {
pinMode(relayTriggerPin, OUTPUT); // Set the relay trigger pin as an output
digitalWrite(relayTriggerPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayTriggerPin, HIGH); // Send a trigger signal to the relay
delay(100); // Keep the trigger signal high for 100ms
digitalWrite(relayTriggerPin, LOW); // Turn off the trigger signal
delay(delayTime); // Wait for the delay time before repeating
}
relayTriggerPin (e.g., pin 7).Relay Does Not Activate:
Relay Activates Immediately Without Delay:
Load Does Not Operate:
Relay Overheats:
Q: Can the QF-RD21H handle AC and DC loads?
A: Yes, the relay can handle both AC and DC loads, provided they are within the rated voltage and current limits.
Q: How do I reset the delay timer?
A: The delay timer resets automatically when the trigger signal is removed and reapplied.
Q: Can I use the relay for high-power devices like motors?
A: Yes, but ensure the motor's starting current does not exceed the relay's contact rating.
By following this documentation, you can effectively integrate the QF-RD21H Time Delayed Relay into your projects for reliable and precise timing control.