

The MY2N is a compact electromagnetic relay manufactured by SMKN 1 CERME. It features two normally open (NO) contacts and is designed for reliable switching in various electronic circuits. This relay operates using a low voltage DC coil, making it suitable for a wide range of automation and control applications. Its compact design and robust performance make it a popular choice for industrial, commercial, and hobbyist projects.








Below are the key technical details of the MY2N relay:
| Parameter | Value |
|---|---|
| Manufacturer | SMKN 1 CERME |
| Manufacturer Part ID | SMKN 1 CERME |
| Contact Configuration | 2 Normally Open (NO) |
| Coil Voltage | 12V DC |
| Contact Rating | 5A at 250V AC / 30V DC |
| Coil Resistance | 160 Ω |
| Operate Time | 15 ms (max) |
| Release Time | 10 ms (max) |
| Insulation Resistance | 100 MΩ (at 500V DC) |
| Dielectric Strength | 2000V AC (coil to contacts) |
| Operating Temperature | -40°C to +70°C |
| Dimensions | 28 mm x 21.5 mm x 36 mm |
| Weight | 35 g |
The MY2N relay has a total of 8 pins. The pin configuration is as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal (+) |
| 2 | Coil Terminal (-) |
| 3 | Common Contact (COM1) |
| 4 | Normally Open (NO1) |
| 5 | Common Contact (COM2) |
| 6 | Normally Open (NO2) |
| 7 | Not Connected (NC) |
| 8 | Not Connected (NC) |
The MY2N relay can be easily controlled using an Arduino UNO. Below is an example circuit and code:
// Define the relay control pin
const int relayPin = 7;
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 Activating
Load Not Switching
Voltage Spikes Damaging Components
Overheating
Can the MY2N relay switch AC loads? Yes, the MY2N relay can switch AC loads up to 250V with a maximum current of 5A.
What is the purpose of the flyback diode? The flyback diode protects the circuit from voltage spikes generated when the relay coil is de-energized.
Can I use the MY2N relay with a 5V power supply? No, the MY2N relay requires a 12V DC power supply for the coil. Using a lower voltage will prevent the relay from activating.
Is the MY2N relay suitable for high-frequency switching? No, the MY2N relay is not designed for high-frequency switching. It is best suited for low-frequency applications.
By following this documentation, you can effectively integrate the MY2N relay into your projects and troubleshoot common issues.