

The 5VcoilRelay (Manufacturer: Finder, Part ID: 32.21.4000) is an electromechanical relay designed to operate with a 5V DC coil voltage. It is commonly used to control high-power devices, such as motors, lights, or heaters, using low-power control signals. This relay acts as an electrically operated switch, enabling isolation between the control circuit and the load circuit.








| Parameter | Value |
|---|---|
| Manufacturer | Finder |
| Part ID | 32.21.4000 |
| Coil Voltage | 5V DC |
| Coil Resistance | 125 Ω |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Contact Rating | 10A at 250V AC / 30V DC |
| Switching Voltage (Max) | 250V AC / 30V DC |
| Switching Current (Max) | 10A |
| Dielectric Strength | 4000V AC (coil to contacts) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 29mm x 12.7mm x 15.7mm |
The 5VcoilRelay has a total of 5 pins. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil (5V DC input). |
| 2 | Coil (-) | Negative terminal of the relay coil (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 energized. |
| 5 | Normally Closed (NC) | Closed when the relay is inactive; opens when the relay is energized. |
Below is an example of how to control the 5VcoilRelay using an Arduino UNO:
// Define the relay control pin
const int relayPin = 8;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
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 Switching:
Load Not Powering On:
Microcontroller Resetting:
Relay Overheating:
Q: Can I use the 5VcoilRelay with a 3.3V microcontroller?
A: Yes, but you will need a transistor or relay driver circuit to step up the control voltage to 5V.
Q: Is the relay suitable for switching DC loads?
A: Yes, the relay can switch DC loads up to 30V and 10A.
Q: Can I use the relay for high-frequency switching?
A: No, electromechanical relays like the 5VcoilRelay are not suitable for high-frequency switching due to mechanical limitations.
Q: What is the purpose of the flyback diode?
A: The flyback diode protects the driving circuit from voltage spikes generated when the relay coil is de-energized.