

The Omron Relay LY2N 12VDC is an electromechanical switching device designed for a wide range of applications. It allows low-power control signals to switch high-power loads, making it ideal for automation, industrial control systems, and home appliances. This relay features a compact design, high reliability, and a transparent cover for easy inspection of internal components.








The following table outlines the key technical details of the Omron Relay LY2N 12VDC:
| Parameter | Value |
|---|---|
| Manufacturer | Omron |
| Part Number | LY2N |
| Coil Voltage | 12V DC |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 10A at 250V AC / 10A at 30V DC |
| Coil Resistance | 160 Ω |
| Operate Time | 25 ms (max) |
| Release Time | 25 ms (max) |
| Insulation Resistance | 1000 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 | Approximately 35 g |
The LY2N relay has 8 pins, as shown in the table below:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal (Positive) |
| 2 | Coil Terminal (Negative) |
| 3 | Common Terminal for Contact Set 1 (COM1) |
| 4 | Normally Open Contact for Set 1 (NO1) |
| 5 | Normally Closed Contact for Set 1 (NC1) |
| 6 | Common Terminal for Contact Set 2 (COM2) |
| 7 | Normally Open Contact for Set 2 (NO2) |
| 8 | Normally Closed Contact for Set 2 (NC2) |
Below is an example of how to control the LY2N relay using an Arduino UNO:
// Example: Controlling an Omron LY2N 12VDC relay with Arduino UNO
const int relayPin = 7; // Pin connected to the relay module
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); // 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
}
Note: Use a transistor or relay driver module to interface the Arduino with the relay, as the Arduino's GPIO pins cannot directly supply the required current for the relay coil.
Relay Not Switching
Contacts Not Conducting
Voltage Spikes Damaging the Circuit
Relay Buzzing Noise
Q1: Can I use the LY2N relay with an AC coil voltage?
A1: No, the LY2N model discussed here is specifically designed for 12V DC coil voltage. For AC applications, use a relay with an appropriate AC coil rating.
Q2: What is the maximum load this relay can handle?
A2: The relay can handle up to 10A at 250V AC or 10A at 30V DC.
Q3: Can I use this relay for switching low-power signals?
A3: Yes, but ensure the contact resistance and switching characteristics are suitable for your low-power application.
Q4: How do I know if the relay is working?
A4: When the coil is energized, you should hear a clicking sound, and the contacts should switch states. You can also check continuity with a multimeter.