

The LY2N is an electromagnetic relay designed to control high-power circuits using low-power signals. It features a double-pole double-throw (DPDT) configuration, enabling it to switch two independent circuits simultaneously. This relay is widely used in automation, industrial control systems, and home appliances due to its reliability and versatility. Its compact design and robust construction make it suitable for a variety of applications, including motor control, lighting systems, and signal switching.








Below are the key technical details of the LY2N relay:
The LY2N relay typically has 8 pins arranged in a rectangular layout. Below is the pin configuration:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Terminal for Pole 1 (COM1) |
| 4 | Normally Closed for Pole 1 (NC1) |
| 5 | Normally Open for Pole 1 (NO1) |
| 6 | Common Terminal for Pole 2 (COM2) |
| 7 | Normally Closed for Pole 2 (NC2) |
| 8 | Normally Open for Pole 2 (NO2) |
The following diagram illustrates the internal connections of the LY2N relay:
Coil: [1]----(Coil)----[2]
Pole 1: [3]----(NC1)----[4]
[3]----(NO1)----[5]
Pole 2: [6]----(NC2)----[7]
[6]----(NO2)----[8]
Below is an example of how to control the LY2N relay using an Arduino UNO:
// Define the pin connected to the relay's coil
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
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 current required to energize the relay coil.
Relay Not Activating:
Contacts Not Switching:
Noise or Chattering:
Burnt Contacts:
Q: Can the LY2N relay handle DC loads?
Q: Is the LY2N relay suitable for switching high-frequency signals?
Q: Can I use the LY2N relay without a socket?
Q: How do I protect the relay from voltage spikes?
This concludes the documentation for the LY2N relay.