The Relay LY2N 12VDC by Omron is a versatile electromechanical relay designed for switching applications. It operates on a 12V DC coil voltage and features a Double Pole Double Throw (DPDT) configuration, enabling the control of two independent circuits with a single relay. This relay is widely used in automation, industrial control systems, home appliances, and other applications requiring electrical isolation and reliable switching.
Below are the key technical details of the 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 | 15 ms (max) |
Release Time | 10 ms (max) |
Insulation Resistance | 1000 MΩ (at 500V DC) |
Dielectric Strength | 2000V AC (coil to contacts) |
Mechanical Durability | 50 million operations |
Electrical Durability | 500,000 operations (at rated load) |
Mounting Style | Plug-in or PCB mount |
Dimensions | 28 mm x 21.5 mm x 36 mm |
Weight | Approx. 35 g |
The Relay LY2N 12VDC has a total of 8 pins. The pinout is as follows:
Pin Number | Description |
---|---|
1 | Coil Terminal (Positive) |
2 | Coil Terminal (Negative) |
3 | Common Contact (Pole 1) |
4 | Normally Open (NO) Contact (Pole 1) |
5 | Normally Closed (NC) Contact (Pole 1) |
6 | Common Contact (Pole 2) |
7 | Normally Open (NO) Contact (Pole 2) |
8 | Normally Closed (NC) Contact (Pole 2) |
Below is an example of how to control the Relay LY2N 12VDC using an Arduino UNO:
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Initialize the relay in the OFF state
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay ON
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay ON for 1 second
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay OFF for 1 second
}
Note: Use a transistor or relay driver circuit 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:
Chattering or Unstable Operation:
Contacts Not Conducting:
Voltage Spikes Damaging the Circuit:
Q1: Can I use the Relay LY2N 12VDC for AC loads?
Yes, the relay can handle AC loads up to 250V with a maximum current of 10A.
Q2: What is the purpose of the DPDT configuration?
The DPDT configuration allows the relay to control two independent circuits simultaneously, providing flexibility in switching applications.
Q3: How do I test if the relay is working?
Apply 12V DC to the coil terminals and listen for a clicking sound, which indicates the relay is switching. You can also use a multimeter to check continuity between the contacts.
Q4: Can I use this relay with a 5V microcontroller?
Yes, but you will need a transistor or relay driver circuit to interface the 5V microcontroller with the 12V relay.
By following this documentation, you can effectively use the Relay LY2N 12VDC in your projects and troubleshoot common issues with ease.