

The NVF4-2 is a Single Pole Double Throw (SPDT) automotive relay manufactured by Ningbo Huaguan. It is designed for 12 V systems and is commonly used to control high-current loads, such as motors, lights, and other automotive devices, using low-current control signals. Its robust design and reliable switching capabilities make it ideal for automotive and industrial applications.








| Parameter | Value |
|---|---|
| Manufacturer | Ningbo Huaguan |
| Part Number | NVF4-2 |
| Relay Type | SPDT (Single Pole Double Throw) |
| Nominal Voltage | 12 V DC |
| Coil Resistance | ~90 Ω |
| Contact Rating | 40 A @ 14 V DC |
| Contact Material | Silver Alloy |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 28 mm x 28 mm x 25 mm |
| Weight | ~30 g |
The NVF4-2 relay has five pins, as shown in the bottom view. The table below describes each pin:
| Pin Number | Pin Name | Description |
|---|---|---|
| 85 | Coil (-) | Negative terminal of the relay coil |
| 86 | Coil (+) | Positive terminal of the relay coil |
| 30 | Common (COM) | Common terminal for the load circuit |
| 87 | Normally Open (NO) | Connected to COM when the relay is energized |
| 87a | Normally Closed (NC) | Connected to COM when the relay is not energized |
Below is an example of how to use the NVF4-2 relay to control a 12 V LED using an Arduino UNO:
// Define the relay control pin
const int relayPin = 7; // Connect Arduino pin 7 to relay pin 86 (Coil +)
void setup() {
pinMode(relayPin, OUTPUT); // Set relay control pin as output
}
void loop() {
digitalWrite(relayPin, HIGH); // Energize the relay (LED ON)
delay(5000); // Keep the LED ON for 5 seconds
digitalWrite(relayPin, LOW); // De-energize the relay (LED OFF)
delay(5000); // Keep the LED OFF for 5 seconds
}
Wiring Notes:
Relay Not Switching:
Voltage Spikes Damaging the Control Circuit:
Load Not Receiving Power:
Relay Overheating:
Q1: Can the NVF4-2 relay be used with a 5 V control signal?
A1: No, the NVF4-2 is designed for a 12 V DC control signal. Using a 5 V signal will not provide sufficient current to energize the coil.
Q2: Is the relay suitable for AC loads?
A2: While the relay can switch AC loads, it is primarily designed for DC automotive applications. Ensure the AC load does not exceed the relay's contact rating.
Q3: Can I use the relay without a microcontroller?
A3: Yes, the relay can be controlled using a simple switch or any 12 V DC control signal.
Q4: What is the purpose of the NC (87a) terminal?
A4: The NC terminal allows the load to remain powered when the relay is not energized, providing flexibility in circuit design.