

The DS2Y-5-DC5V is a miniature relay manufactured by Panasonic, designed for low voltage applications. This relay is commonly used in automation, control systems, and other electronic circuits requiring reliable switching. Its compact size and dependable performance make it ideal for space-constrained designs and applications where precision and durability are critical.








| Parameter | Value |
|---|---|
| Manufacturer | Panasonic |
| Part Number | DS2Y-5-DC5V |
| Coil Voltage | 5V DC |
| Coil Resistance | 178 Ω ±10% |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 2A at 30V DC / 0.5A at 125V AC |
| Maximum Switching Voltage | 220V DC / 250V AC |
| Maximum Switching Current | 2A |
| Insulation Resistance | 1000 MΩ (at 500V DC) |
| Dielectric Strength | 1500V AC (1 minute) |
| Operating Time | Approx. 4 ms |
| Release Time | Approx. 4 ms |
| Dimensions | 20.2 x 10.2 x 9.8 mm |
| Weight | Approx. 4.5 g |
The DS2Y-5-DC5V relay has a total of 8 pins. The pinout is as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal (Positive) |
| 2 | Coil Terminal (Negative) |
| 3 | Common Contact (Pole 1) |
| 4 | Normally Closed (NC) Contact 1 |
| 5 | Normally Open (NO) Contact 1 |
| 6 | Common Contact (Pole 2) |
| 7 | Normally Closed (NC) Contact 2 |
| 8 | Normally Open (NO) Contact 2 |
Below is an example of how to control the DS2Y-5-DC5V relay using an Arduino UNO:
// Example: Controlling DS2Y-5-DC5V relay with Arduino UNO
// Pin 7 of Arduino is used to control the relay
const int relayPin = 7; // Define the pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn relay on
delay(1000); // Keep relay on for 1 second
digitalWrite(relayPin, LOW); // Turn relay off
delay(1000); // Keep relay off for 1 second
}
Note: Use a transistor or relay driver circuit if the Arduino pin cannot supply sufficient current to drive the relay.
| Issue | Possible Cause | Solution |
|---|---|---|
| Relay does not activate | Insufficient coil voltage or current | Ensure a stable 5V DC supply is used. |
| Relay chatters or buzzes | Unstable power supply | Use a decoupling capacitor near the relay. |
| Load does not switch | Incorrect wiring of contacts | Verify the connections to NC, NO, and COM. |
| Coil overheating | Overvoltage applied to the coil | Check and regulate the input voltage. |
| Voltage spikes damaging components | No flyback diode across the coil | Add a flyback diode (e.g., 1N4007). |
Can the DS2Y-5-DC5V handle AC loads?
What is the purpose of the flyback diode?
Can I use the DS2Y-5-DC5V with a 3.3V microcontroller?
What is the lifespan of the relay?