

The 12V 4-pin socket relay is an electromechanical switch that allows a low-power control signal to operate high-power devices. It is widely used in applications where electrical isolation and high-current switching are required. This relay operates at a 12V DC input and features a 4-pin configuration, making it simple to integrate into various circuits.








Below are the key technical details of the 12V 4-pin socket relay:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| Coil Resistance | ~320 Ohms |
| Switching Voltage | Up to 250V AC / 30V DC |
| Switching Current | Up to 10A |
| Contact Type | SPST (Single Pole Single Throw) |
| Isolation | Electrical isolation between control and load sides |
| Dimensions | Varies by manufacturer, typically compact |
The 4-pin configuration of the relay is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil (connect to 12V DC control signal). |
| 2 | Coil (-) | Negative terminal of the relay coil (connect to ground). |
| 3 | Common (COM) | Common terminal for the load circuit. |
| 4 | Normally Open (NO) | Load terminal that connects to COM when the relay is activated. |
Below is an example of how to control the 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(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the relay off for 5 seconds
}
Relay Not Activating
Load Not Powering On
Relay Buzzing Noise
Burnt Relay Contacts
Can I use this relay with a 5V control signal? No, this relay requires a 12V DC control signal. Use a 5V relay or a transistor circuit to step up the control voltage.
Is the relay suitable for AC loads? Yes, the relay can switch AC loads up to 250V, provided the current does not exceed 10A.
Do I need a heatsink for the relay? No, the relay does not require a heatsink. However, ensure proper ventilation if switching high-power loads continuously.
This concludes the documentation for the 12V 4-pin socket relay.