

The Relay LY2N, manufactured by X (Part ID: 3), is an electromagnetic switch designed to control circuits using a low-power signal. It is widely used in applications where electrical isolation and high reliability are required. The relay can also control multiple circuits with a single input signal, making it a versatile component in both industrial and hobbyist projects.








The Relay LY2N has a total of 8 pins. The pin configuration is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil. |
| 2 | Coil (-) | Negative terminal of the relay coil. |
| 3 | Common (COM1) | Common terminal for the first pole of the relay. |
| 4 | Normally Open (NO1) | Normally open contact for the first pole. Closed when the relay is energized. |
| 5 | Normally Closed (NC1) | Normally closed contact for the first pole. Open when the relay is energized. |
| 6 | Common (COM2) | Common terminal for the second pole of the relay. |
| 7 | Normally Open (NO2) | Normally open contact for the second pole. Closed when the relay is energized. |
| 8 | Normally Closed (NC2) | Normally closed contact for the second pole. Open when the relay is energized. |
Below is an example of how to control the Relay LY2N using an Arduino UNO:
// Define the pin connected to the relay's coil
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); // Energize the relay
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // De-energize the relay
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor (e.g., 2N2222) and a base resistor (e.g., 1kΩ) to drive the relay coil from the Arduino, as the Arduino's GPIO pins cannot supply sufficient current directly.
Relay Not Switching:
Chattering or Unstable Operation:
Contacts Not Conducting Properly:
Overheating:
Q: Can the Relay LY2N handle AC loads?
Q: Is the Relay LY2N suitable for low-power signals?
Q: Can I use the Relay LY2N with a 5V microcontroller?
Q: How do I know if the relay is energized?