

The 12V 5-pin relay is an electromechanical switch that uses an electromagnet to open or close a circuit. It is commonly used to control high-voltage or high-current devices, such as motors, lights, or appliances, using a low-voltage control signal. This makes it an essential component in automation, automotive systems, and home electronics.








The following table outlines the key technical details of the 12V 5-pin relay:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| Coil Resistance | ~400 Ohms |
| Switching Voltage | Up to 250V AC / 30V DC |
| Switching Current | Up to 10A |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Dimensions | ~28mm x 28mm x 25mm |
| Weight | ~20g |
| Insulation Resistance | ≥100MΩ |
| Dielectric Strength | 500V AC (coil to contact) |
The 12V 5-pin relay has the following pinout:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil (12V input) |
| 2 | Coil (-) | Negative terminal of the relay coil (GND) |
| 3 | Common (COM) | Common terminal for the switching contacts |
| 4 | Normally Open (NO) | Connected to COM when the relay is activated |
| 5 | Normally Closed (NC) | Connected to COM when the relay is inactive |
Below is an example of how to control a 12V 5-pin relay using an Arduino UNO:
// Define the relay control pin
const int relayPin = 7;
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); // 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
}
Relay Not Activating:
Load Not Switching:
Relay Buzzing or Clicking Rapidly:
Q: Can I use the 12V 5-pin relay with a 5V control signal?
A: No, the relay requires a 12V DC signal to activate the coil. You can use a transistor or relay driver circuit to interface a 5V control signal with the relay.
Q: How do I know if the relay is working?
A: You should hear a clicking sound when the relay activates. You can also use a multimeter to check the continuity between COM and NO/NC.
Q: Can I use this relay for AC loads?
A: Yes, the relay can switch AC loads up to 250V, but ensure the load current does not exceed 10A.
By following this documentation, you can effectively integrate the 12V 5-pin relay into your projects and troubleshoot common issues.