The Valefod Timer Relay Programmable is an electromechanical device designed to control the timing of electrical circuits. It allows users to set precise time delays for turning circuits on or off, enabling automation in a wide range of applications. This component is highly versatile and can be programmed for various timing functions, making it ideal for use in lighting systems, HVAC systems, industrial machinery, and other automated processes.
Parameter | Value |
---|---|
Operating Voltage | 6V to 30V DC |
Maximum Load Current | 10A |
Timing Range | 0.1 seconds to 999 minutes |
Display Type | LED digital display |
Control Modes | Multiple programmable modes (e.g., delay on, delay off) |
Power Consumption | < 0.1W |
Operating Temperature | -40°C to 85°C |
Dimensions | 60mm x 34mm x 12mm |
Pin Name | Description |
---|---|
VCC | Positive power supply input (6V to 30V DC). |
GND | Ground connection for the power supply. |
IN+ | Positive input for the load or external trigger signal. |
IN- | Negative input for the load or external trigger signal. |
NO | Normally Open terminal for the relay. Connect to the load for switching. |
COM | Common terminal for the relay. Connect to the power source or load. |
NC | Normally Closed terminal for the relay. Use for circuits requiring default ON. |
The Valefod Timer Relay Programmable can be easily integrated with an Arduino UNO for advanced automation. Below is an example code to control the relay:
// Example: Controlling the Timer Relay with Arduino UNO
// Connect IN+ to Arduino pin 7 and IN- to GND
#define RELAY_PIN 7 // Define the pin connected to the relay's IN+ terminal
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
digitalWrite(RELAY_PIN, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(5000); // Wait for 5 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(5000); // Wait for 5 seconds
}
Issue | Possible Cause | Solution |
---|---|---|
Relay does not activate | Incorrect wiring or insufficient power | Verify all connections and ensure the power supply is within the operating range. |
Timing is inaccurate | Incorrect programming of delay parameters | Reprogram the timing settings and confirm using the LED display. |
Relay overheats | Load exceeds maximum current rating | Reduce the load or use an external relay for higher current applications. |
LED display not working | Faulty power supply or damaged component | Check the power supply and inspect the relay for physical damage. |
External trigger not functioning | Signal not reaching IN+ and IN- pins | Verify the trigger signal and ensure proper connection to the input pins. |
Can this relay be used with AC loads?
What happens if the power supply is interrupted?
Can I use this relay for PWM signals?
How do I reset the relay to factory settings?
Is the relay waterproof?
This documentation provides a comprehensive guide to using the Valefod Timer Relay Programmable effectively. For further assistance, refer to the manufacturer's user manual or contact technical support.