The Time Delay Relay (Selec 600XU-A-1-CU) is an electronic component designed to open or close a circuit after a predetermined time delay. This versatile relay is widely used in automation, industrial control systems, and timing applications. It provides precise control over timing functions, making it ideal for applications such as motor control, lighting systems, and sequential operations.
The following table outlines the key technical details of the Selec 600XU-A-1-CU Time Delay Relay:
Parameter | Specification |
---|---|
Manufacturer | Selec |
Part ID | 600XU-A-1-CU |
Operating Voltage | 12V DC / 24V DC / 110V AC / 230V AC |
Time Delay Range | 0.1 seconds to 9999 hours |
Contact Configuration | SPDT (Single Pole Double Throw) |
Contact Rating | 5A at 230V AC / 30V DC |
Power Consumption | < 3W |
Mounting Type | DIN Rail |
Operating Temperature | -10°C to +55°C |
Dimensions | 48mm x 48mm x 90mm |
Weight | Approximately 150g |
The Selec 600XU-A-1-CU Time Delay Relay has the following pin configuration:
Pin Number | Label | Description |
---|---|---|
1 | A1 | Positive supply voltage |
2 | A2 | Negative supply voltage |
3 | 15 | Common terminal for relay contacts |
4 | 16 | Normally Closed (NC) contact |
5 | 18 | Normally Open (NO) contact |
Below is an example of how to use the Selec 600XU-A-1-CU Time Delay Relay with an Arduino UNO to control a light with a 5-second delay.
// Example: Controlling a Time Delay Relay with Arduino UNO
// This code activates the relay for 5 seconds after a button press.
const int relayPin = 7; // Pin connected to the relay module
const int buttonPin = 2; // Pin connected to the button
int buttonState = 0; // Variable to store button state
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
pinMode(buttonPin, INPUT); // Set button pin as input
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == HIGH) { // If button is pressed
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate the relay
}
}
Relay Does Not Activate:
Relay Activates but Load Does Not Operate:
Unstable Operation:
Time Delay Not Accurate:
Q1: Can this relay be used with DC loads?
A1: Yes, the Selec 600XU-A-1-CU can handle DC loads up to 30V DC at 5A.
Q2: How do I reset the relay after activation?
A2: The relay automatically resets after the time delay. For manual reset, disconnect and reconnect the power supply.
Q3: Can I use this relay for high-power applications?
A3: No, this relay is rated for a maximum of 5A. For higher power, use an additional contactor.
Q4: Is the relay programmable?
A4: Yes, the time delay can be programmed using the front-panel controls or digital interface.
This concludes the documentation for the Selec 600XU-A-1-CU Time Delay Relay.