

The Timer Relay Programmable by Valefod is an electromechanical device designed to control the timing of electrical circuits. This versatile component allows users to program specific time delays for turning circuits on or off, making it an essential tool for automation, control systems, and time-based operations. Its programmable nature ensures flexibility and precision in a wide range of applications.








The following table outlines the key technical details of the Valefod Timer Relay Programmable:
| Parameter | Specification |
|---|---|
| Operating Voltage | 6V to 30V DC |
| Maximum Load Current | 10A |
| Relay Type | SPDT (Single Pole Double Throw) |
| Timing Range | 0.1 seconds to 999 minutes |
| Display Type | LED digital display |
| Programming Modes | 18 modes (e.g., delay on, delay off) |
| Power Consumption | < 0.5W |
| Dimensions | 60mm x 34mm x 12mm |
| Operating Temperature | -40°C to 85°C |
The Timer Relay Programmable has the following pin configuration:
| Pin Name | Description |
|---|---|
| VCC | Positive power supply input (6V to 30V DC). |
| GND | Ground connection for the power supply. |
| NO | Normally Open terminal of the relay. Connect the load to this terminal. |
| COM | Common terminal of the relay. |
| NC | Normally Closed terminal of the relay. |
The Timer Relay Programmable can be easily integrated with an Arduino UNO for automation tasks. Below is an example code snippet to control the relay:
// Example: Controlling the Timer Relay Programmable with Arduino UNO
// Connect the relay's VCC and GND to the Arduino's 5V and GND pins.
// Connect the relay's COM and NO pins to the load circuit.
const int relayPin = 7; // Define the Arduino pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Turn the relay off
delay(5000); // Keep the relay off for 5 seconds
}
relayPin with the actual pin number connected to the relay.delay() values to modify the on/off timing.Relay Not Switching:
Load Not Operating:
Relay Stuck in One State:
Display Not Working:
Q1: Can the Timer Relay Programmable be used with AC loads?
A1: Yes, the relay can control AC loads, but ensure the load current does not exceed 10A and proper isolation is maintained.
Q2: How do I reset the relay to factory settings?
A2: Refer to the Valefod Timer Relay manual for the specific reset procedure, typically involving a combination of button presses.
Q3: Can I use this relay for high-frequency switching?
A3: No, the relay is not designed for high-frequency switching. Use a solid-state relay for such applications.
Q4: Is the relay waterproof?
A4: No, the relay is not waterproof. Use it in a dry environment or within a protective enclosure.