The RELAY HD, manufactured by CAR (Part ID: CAR), is a high-density relay designed for switching electrical circuits. It is capable of handling high current loads while providing electrical isolation between the control and load circuits. This makes it an essential component in applications requiring reliable and efficient switching.
The following table outlines the key technical details of the RELAY HD:
Parameter | Value |
---|---|
Manufacturer | CAR |
Part ID | CAR |
Operating Voltage | 5V DC (control side) |
Switching Voltage | Up to 250V AC / 30V DC |
Maximum Current Load | 10A |
Contact Type | SPDT (Single Pole Double Throw) |
Coil Resistance | 70Ω |
Isolation Voltage | 1500V AC |
Operating Temperature | -40°C to +85°C |
Dimensions | 29mm x 12.7mm x 15mm |
The RELAY HD has a standard 5-pin configuration. The table below describes each pin:
Pin Number | Name | Description |
---|---|---|
1 | Coil+ (VCC) | Positive terminal of the relay coil. Connect to the control voltage (e.g., 5V). |
2 | Coil- (GND) | Negative terminal of the relay coil. Connect to ground. |
3 | Common (COM) | Common terminal for the load circuit. |
4 | Normally Open (NO) | Open when the relay is inactive; closes when the relay is activated. |
5 | Normally Closed (NC) | Closed when the relay is inactive; opens when the relay is activated. |
Coil+
pin to a 5V DC power source and the Coil-
pin to ground. This energizes the relay coil.COM
pin.NO
pin if you want the load to be powered only when the relay is activated.NC
pin if you want the load to be powered when the relay is inactive.Below is an example of how to control the RELAY HD using an Arduino UNO:
// Define the pin connected to the relay control
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Activate the relay
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(1000); // Keep the relay off for 1 second
}
Note: Ensure the relay is connected to the Arduino through a transistor or relay driver circuit, as the Arduino's GPIO pins cannot supply sufficient current to directly drive the relay.
Relay Not Switching:
Load Not Powering On:
COM
, NO
, and NC
pins.Excessive Heat:
Noise or Chattering:
Q: Can the RELAY HD handle DC loads?
Q: Is the RELAY HD suitable for high-frequency switching?
Q: Can I use the RELAY HD with a 3.3V control signal?
Q: Does the RELAY HD require a heatsink?