

The Off Delay Module is an electronic device designed to delay the turn-off of a circuit after the trigger signal is removed. This functionality is essential in automation and control systems where controlled timing is required. By maintaining the circuit's operation for a specified duration after the trigger is deactivated, the module ensures smooth transitions and prevents abrupt interruptions.








The Off Delay Module is available in various configurations, but the following are typical specifications:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC or 24V DC (model-dependent) |
| Current Rating | 10A (max load) |
| Delay Time Range | 0.1 seconds to 10 minutes |
| Trigger Signal Voltage | 3V to 24V DC |
| Power Consumption | < 1W |
| Operating Temperature | -20°C to 60°C |
| Dimensions | 50mm x 30mm x 20mm |
The Off Delay Module typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| VCC | Positive power supply input (e.g., 12V or 24V DC) |
| GND | Ground connection for the power supply |
| TRIG | Trigger input pin; accepts a signal to activate the delay timer |
| OUT | Output pin; connected to the load that will remain active during the delay time |
The Off Delay Module can be triggered by an Arduino UNO. Below is an example code snippet:
// Example: Triggering an Off Delay Module with Arduino UNO
// This code sends a HIGH signal to the TRIG pin for 5 seconds, then removes it.
// The Off Delay Module will keep the load active for the set delay time.
const int trigPin = 7; // Arduino pin connected to the TRIG pin of the module
void setup() {
pinMode(trigPin, OUTPUT); // Set the TRIG pin as an output
digitalWrite(trigPin, LOW); // Ensure the TRIG pin starts LOW
}
void loop() {
digitalWrite(trigPin, HIGH); // Send a HIGH signal to trigger the module
delay(5000); // Keep the signal HIGH for 5 seconds
digitalWrite(trigPin, LOW); // Remove the trigger signal
delay(10000); // Wait for 10 seconds before repeating
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Module does not activate the load | Incorrect power supply voltage | Verify the power supply voltage matches the module's specifications. |
| Load turns off immediately after trigger | Delay time not set correctly | Adjust the delay time using the potentiometer or DIP switches. |
| False triggering of the module | Noise or unstable trigger signal | Use a debounce circuit or filter to stabilize the trigger signal. |
| Module overheats during operation | Load exceeds the current rating | Ensure the load's current is within the module's maximum rating (10A). |
Can the delay time be adjusted dynamically?
What happens if the trigger signal is reactivated during the delay period?
Can the module handle AC loads?
Is the module compatible with 5V logic signals?
By following this documentation, users can effectively integrate the Off Delay Module into their projects for reliable and controlled timing operations.