

The Omron MY2N is a general-purpose electromagnetic relay designed for reliable switching in a wide range of electronic and industrial applications. It features a compact design and a double pole double throw (DPDT) configuration, making it versatile for controlling circuits with multiple outputs. The MY2N relay is known for its durability, high switching capacity, and ease of integration into various systems.








The following table outlines the key technical specifications 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 (minimum) |
| Electrical Durability | 500,000 operations (minimum) |
| Ambient Operating Temperature | -55°C to 70°C |
| Dimensions | 27.5mm x 21.5mm x 35.5mm |
The Omron MY2N relay has 8 pins, as described in the table below:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal A |
| 2 | Coil Terminal B |
| 3 | Common Contact (Pole 1) |
| 4 | Normally Closed (NC) Contact (Pole 1) |
| 5 | Normally Open (NO) Contact (Pole 1) |
| 6 | Common Contact (Pole 2) |
| 7 | Normally Closed (NC) Contact (Pole 2) |
| 8 | Normally Open (NO) Contact (Pole 2) |
Below is an example of how to control the Omron MY2N relay using an Arduino UNO:
// Example: Controlling Omron MY2N Relay with Arduino UNO
// Pin 7 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); // Energize the relay (turn it on)
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // De-energize the relay (turn it off)
delay(1000); // Keep the relay off for 1 second
}
Note: Use a relay driver circuit (e.g., a transistor or relay module) to interface the Arduino with the MY2N relay, as the Arduino's GPIO pins cannot directly supply the required current for the relay coil.
Relay Not Switching:
Contacts Not Conducting Properly:
Excessive Heat:
Noise or Chattering:
Q: Can the MY2N relay switch both AC and DC loads?
Q: Is the MY2N relay suitable for high-frequency switching?
Q: Can I use the MY2N relay without a socket?
Q: Does the MY2N relay have built-in protection?
This concludes the documentation for the Omron MY2N relay.