

The MY2N is a relay component manufactured by SMKN 2 PAS with the part ID 03. It is a versatile and reliable relay designed for switching applications in electronic circuits. Featuring a double pole, double throw (DPDT) configuration, the MY2N can control two independent circuits simultaneously. The relay operates using an electromagnetic coil, which activates the switching mechanism when an appropriate input signal is applied.








| Parameter | Value |
|---|---|
| Manufacturer | SMKN 2 PAS |
| Part ID | 03 |
| Relay Type | Electromagnetic Relay |
| Configuration | DPDT (Double Pole, Double Throw) |
| Coil Voltage | 12V DC (typical) |
| Coil Resistance | 160 Ω |
| Contact Rating | 5A at 250V AC / 30V DC |
| Switching Voltage | Max 250V AC / 125V DC |
| Switching Current | Max 5A |
| Insulation Resistance | ≥ 100 MΩ at 500V DC |
| Operating Temperature | -40°C to +70°C |
| Mechanical Life | 10 million operations |
| Electrical Life | 100,000 operations |
The MY2N relay has 8 pins, which are configured as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Terminal for Pole 1 |
| 4 | Normally Closed (NC) for Pole 1 |
| 5 | Normally Open (NO) for Pole 1 |
| 6 | Common Terminal for Pole 2 |
| 7 | Normally Closed (NC) for Pole 2 |
| 8 | Normally Open (NO) for Pole 2 |
The MY2N relay can be easily controlled using an Arduino UNO. Below is an example circuit and code to toggle the relay:
// Define the relay control pin
const int relayPin = 7;
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
}
Relay Not Activating:
Contacts Not Switching:
Voltage Spikes in the Circuit:
Relay Buzzing or Chattering:
Q: Can the MY2N relay handle AC loads?
A: Yes, the MY2N can handle AC loads up to 250V with a maximum current of 5A.
Q: What is the purpose of the DPDT configuration?
A: The DPDT configuration allows the relay to control two independent circuits simultaneously, providing flexibility in switching applications.
Q: How do I extend the relay's lifespan?
A: Operate the relay within its specified ratings, use proper protection circuits (e.g., flyback diodes), and avoid excessive mechanical stress during installation.
Q: Can I use the MY2N with a 5V control signal?
A: No, the MY2N requires a 12V DC signal to activate the coil. Use a transistor or relay driver circuit to step up the control voltage if needed.