

The Omron MY2N is a general-purpose electromagnetic relay with a Double Pole Double Throw (DPDT) configuration. It is designed to switch high currents and voltages while maintaining a compact and reliable form factor. This relay is widely used in automation, industrial control systems, and general-purpose switching applications. Its high durability and dependable performance make it a popular choice for engineers and hobbyists alike.








Below are the key technical details of the Omron MY2N relay:
| Parameter | Value |
|---|---|
| Coil Voltage | 6V, 12V, 24V, 48V, 110V, 220V DC/AC |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 5A at 250VAC / 30VDC |
| Coil Resistance | Varies by coil voltage (e.g., 160Ω for 24V DC) |
| Operating Time | Approx. 20 ms |
| Release Time | Approx. 20 ms |
| Insulation Resistance | 100 MΩ minimum at 500VDC |
| Dielectric Strength | 2000VAC between coil and contacts |
| Mechanical Durability | 50 million operations |
| Electrical Durability | 500,000 operations (at rated load) |
| Ambient Operating Temperature | -55°C to 70°C |
| Dimensions | 28 x 21.5 x 36 mm |
The Omron MY2N relay has 8 pins, which are configured as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 |
| 2 | Coil Terminal 2 |
| 3 | Common Terminal for Pole 1 (COM1) |
| 4 | Normally Open Contact for Pole 1 (NO1) |
| 5 | Normally Closed Contact for Pole 1 (NC1) |
| 6 | Common Terminal for Pole 2 (COM2) |
| 7 | Normally Open Contact for Pole 2 (NO2) |
| 8 | Normally Closed Contact for Pole 2 (NC2) |
Below is an example of how to control the Omron MY2N relay using an Arduino UNO:
// Define the relay control pin
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // Turn the relay off
delay(1000); // Keep the relay off for 1 second
}
Relay Not Switching:
Chattering or Unstable Operation:
Contacts Not Conducting Properly:
Arduino Not Controlling the Relay:
Q: Can the Omron MY2N relay handle AC loads?
A: Yes, the relay can handle AC loads up to 250VAC, provided the current does not exceed 5A.
Q: Is the relay suitable for high-frequency switching?
A: No, the Omron MY2N is not designed for high-frequency switching. It is best suited for low to moderate switching frequencies.
Q: Can I use the relay without a transistor driver?
A: Only if the control signal can provide sufficient current to energize the coil. Otherwise, a transistor or MOSFET driver is recommended.
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.