

The MY2N is a relay component manufactured by SMKN1GEMPOL, designed for switching applications in electronic circuits. It features a compact design and is capable of controlling high voltage and current loads. This makes it an ideal choice for automation, industrial control systems, and other applications requiring reliable electrical isolation and load control.








Below are the key technical details of the MY2N relay:
| Parameter | Value |
|---|---|
| Manufacturer | SMKN1GEMPOL |
| Part ID | SMKN1GEMPOL |
| Coil Voltage | 12V DC / 24V DC / 110V AC / 220V AC |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 5A at 250V AC / 30V DC |
| Coil Resistance | Varies by coil voltage (e.g., 400Ω for 12V DC) |
| Operating Temperature | -40°C to +70°C |
| Insulation Resistance | ≥ 100MΩ at 500V DC |
| Dielectric Strength | 1500V AC (coil to contact) |
| Mechanical Life | 10 million operations |
| Electrical Life | 100,000 operations (at rated load) |
The MY2N relay has 8 pins, arranged as follows:
| Pin Number | Description |
|---|---|
| 1, 2 | Coil terminals (energize the relay) |
| 3, 4 | Normally Closed (NC) contact for Pole 1 |
| 5, 6 | Common terminal for Pole 1 |
| 7, 8 | Normally Open (NO) contact for Pole 1 |
Note: Pins 3, 4, 5, and 6 correspond to the first pole, while pins 7, 8, and their associated common terminal correspond to the second pole.
Below is an example of how to control the MY2N relay using an Arduino UNO:
// Define the pin connected to the relay's coil
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Energize the relay
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // De-energize the relay
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor and a flyback diode to drive the relay from the Arduino, as the Arduino's GPIO pins cannot supply sufficient current to directly energize the relay.
Relay Not Switching:
Chattering or Unstable Operation:
Contacts Not Conducting:
Overheating:
Q: Can the MY2N relay handle DC loads?
A: Yes, the MY2N can handle DC loads up to 30V at 5A.
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.
Q: Can I use the MY2N for high-frequency switching?
A: No, the MY2N is not suitable for high-frequency switching due to mechanical limitations.
Q: How do I test if the relay is working?
A: Apply the rated coil voltage to pins 1 and 2, and check for continuity between the common and NO terminals.
This concludes the documentation for the MY2N relay. For further assistance, refer to the manufacturer's datasheet or contact SMKN1GEMPOL support.