

The Relay LY2N 12VDC, manufactured by Omron, is an electromechanical relay designed for switching applications. It allows low-power control signals (12V DC) to operate high-power loads, making it ideal for automation, industrial control, and home electronics projects. Its compact design and robust performance make it a versatile component for a wide range of applications.








Below are the key technical details of the Relay LY2N 12VDC:
| Parameter | Value |
|---|---|
| Manufacturer | Omron |
| Part ID | Relay |
| Coil Voltage | 12V DC |
| Coil Resistance | 160 Ω |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 10A at 250V AC / 10A at 30V DC |
| Dielectric Strength | 2000V AC (coil to contact) |
| Operating Temperature | -40°C to 70°C |
| Dimensions | 28mm x 21.5mm x 35.5mm |
| Mounting Type | Plug-in or PCB mount |
The Relay LY2N 12VDC has a total of 8 pins. The pin configuration is as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 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 Relay LY2N 12VDC using an Arduino UNO:
// Define the pin connected to the transistor base (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 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
}
Circuit Notes:
Relay Not Switching:
Voltage Spikes Damaging Components:
Contacts Not Conducting Properly:
Relay Buzzing Noise:
Q1: Can I use the Relay LY2N 12VDC with a 5V control signal?
A1: No, the relay requires a 12V DC signal to energize the coil. You can use a transistor or relay driver circuit to interface a 5V control signal with the relay.
Q2: What is the maximum load the relay can handle?
A2: The relay can handle up to 10A at 250V AC or 10A at 30V DC. Ensure the load does not exceed these ratings.
Q3: Can I use this relay for AC loads?
A3: Yes, the relay is suitable for both AC and DC loads, provided the load voltage and current are within the specified ratings.
Q4: How do I know if the relay is working?
A4: When the relay is energized, you should hear a clicking sound as the internal contacts switch. You can also measure continuity between the COM and NO terminals to confirm operation.