The 12V 4 Pin Common Vehicle Relay is an electromechanical switch designed to control high-current devices using a low-current signal. It operates at 12 volts, making it ideal for automotive applications. This relay is widely used in vehicles to control components such as headlights, horns, fuel pumps, and cooling fans. Its compact design and four-pin configuration make it easy to integrate into various circuits.
The following table outlines the key technical details of the 12V 4 Pin Common Vehicle Relay:
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Coil Resistance | ~85 Ohms |
Contact Rating | 30A at 12V DC |
Contact Configuration | SPST (Single Pole Single Throw) |
Pin Count | 4 |
Dimensions | ~28mm x 28mm x 25mm |
Operating Temperature | -40°C to +85°C |
Insulation Resistance | ≥100MΩ at 500V DC |
Dielectric Strength | 500V AC for 1 minute |
The 12V 4 Pin Common Vehicle Relay has the following pin configuration:
Pin Number | Name | Description |
---|---|---|
85 | Coil (-) | Connects to the negative terminal of the control signal (ground). |
86 | Coil (+) | Connects to the positive terminal of the control signal (12V DC). |
30 | Common (COM) | The input terminal for the high-current load. |
87 | Normally Open (NO) | The output terminal that connects to the load when the relay is activated. |
The 12V 4 Pin Common Vehicle Relay can be controlled using an Arduino UNO. Below is an example circuit and code to toggle a relay using a digital output pin.
// Define the relay control pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off initially
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay on for 1 second
// Turn the relay off
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay off for 1 second
}
Relay Not Activating:
Load Not Powering On:
Relay Buzzing Noise:
Voltage Spikes Damaging Components:
Q: Can this relay handle AC loads?
A: No, this relay is designed for DC loads only. Using it with AC loads may damage the relay.
Q: What happens if I reverse the coil connections (pins 85 and 86)?
A: The relay will not activate. Ensure correct polarity when connecting the coil.
Q: Can I use this relay for a load exceeding 30A?
A: No, exceeding the rated current may cause overheating and damage the relay contacts.
Q: Is the relay waterproof?
A: Most 12V 4 Pin Vehicle Relays are not waterproof. Use a waterproof relay or enclosure for outdoor applications.