

The Omron MY2N is a general-purpose relay designed for reliable switching of high currents and voltages. It features a compact design and a double-pole double-throw (DPDT) configuration, making it versatile for a wide range of applications. This relay is commonly used in automation, industrial control systems, home appliances, and signal switching circuits. Its transparent housing allows for easy visual inspection of the relay's operation, ensuring reliability and ease of maintenance.








| Parameter | Value |
|---|---|
| Manufacturer | Omron |
| Model | MY2N |
| Contact Configuration | DPDT (Double-Pole Double-Throw) |
| Coil Voltage Range | 6V DC, 12V DC, 24V DC, 48V DC, 110V AC, 220V AC |
| Contact Rating | 5A at 250V AC / 30V DC |
| Coil Power Consumption | Approximately 0.9W (DC) / 1.2VA (AC) |
| Insulation Resistance | 100 MΩ minimum (at 500V DC) |
| Dielectric Strength | 2000V AC for 1 minute |
| Operating Temperature | -40°C to 70°C |
| Mechanical Durability | 50 million operations (minimum) |
| Electrical Durability | 500,000 operations (minimum) |
The Omron MY2N relay has 8 pins arranged in a standard configuration. Below is the pinout description:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal A |
| 2 | Coil Terminal B |
| 3 | Common Terminal for Pole 1 (COM1) |
| 4 | Normally Closed Contact for Pole 1 (NC1) |
| 5 | Normally Open Contact for Pole 1 (NO1) |
| 6 | Common Terminal for Pole 2 (COM2) |
| 7 | Normally Closed Contact for Pole 2 (NC2) |
| 8 | Normally Open Contact for Pole 2 (NO2) |
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 of Arduino 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); // 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
}
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 drive the relay coil.
Relay Not Switching:
Contacts Not Conducting:
Coil Overheating:
Noise or Chattering:
Q1: Can the MY2N relay handle AC and DC loads?
Yes, the MY2N relay can switch both AC and DC loads, provided the voltage and current are within the specified contact ratings.
Q2: What is the purpose of the transparent housing?
The transparent housing allows users to visually inspect the relay's internal operation and verify its switching state.
Q3: Can I use the MY2N relay for high-frequency switching?
No, the MY2N relay is not suitable for high-frequency switching applications. It is designed for general-purpose use with moderate switching speeds.
Q4: How do I determine the coil polarity for DC models?
The coil terminals (pins 1 and 2) are not polarized, so you can connect them in either orientation for DC models. However, always refer to the datasheet for specific details.