

The Schneider Electric LC1D32U7 is a robust and versatile relay designed for industrial and commercial applications. It features three poles (3P) with both normally open (NO) and normally closed (NC) contacts, making it ideal for controlling and switching electrical circuits. This relay is commonly used in motor control, lighting systems, and automation processes where reliable switching is required.








| Parameter | Value |
|---|---|
| Manufacturer | Schneider Electric |
| Part Number | LC1D32U7 |
| Number of Poles | 3 (Three Poles) |
| Contact Configuration | Normally Open (NO) + Normally Closed (NC) |
| Rated Operational Voltage | Up to 690V AC |
| Rated Current | 32A |
| Coil Voltage | 110V AC (50/60 Hz) |
| Mechanical Durability | 10 million operations |
| Electrical Durability | 1 million operations |
| Mounting Type | DIN Rail or Panel Mount |
| Operating Temperature | -5°C to +60°C |
| Dimensions (H x W x D) | 85mm x 45mm x 90mm |
| Weight | 0.6 kg |
The LC1D32U7 relay has a straightforward pin layout for its coil and contact terminals. Below is the pin configuration:
| Pin Number | Description |
|---|---|
| A1 | Coil Input (Positive) |
| A2 | Coil Input (Negative) |
| Pin Number | Description |
|---|---|
| L1, L2, L3 | Input Terminals for 3 Poles |
| T1, T2, T3 | Output Terminals for 3 Poles |
| 13, 14 | Normally Open (NO) Contact |
| 21, 22 | Normally Closed (NC) Contact |
The LC1D32U7 can be controlled using an Arduino UNO by interfacing it with a relay driver circuit. Below is an example code snippet:
// Arduino code to control the LC1D32U7 relay using a digital pin
const int relayPin = 7; // Pin connected to the relay driver circuit
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(5000); // Keep it ON for 5 seconds
digitalWrite(relayPin, LOW); // Turn the relay OFF
delay(5000); // Keep it OFF for 5 seconds
}
Note: Use a transistor or relay driver module to interface the Arduino with the LC1D32U7, as the Arduino cannot directly drive the relay's coil.
Relay Does Not Activate:
Contacts Do Not Switch:
Excessive Heating:
Noise or Chattering:
Q: Can the LC1D32U7 be used with DC loads?
A: Yes, but ensure the load's voltage and current ratings are within the relay's specifications.
Q: How do I protect the relay from voltage spikes?
A: Use a snubber circuit or varistor across the contacts to suppress voltage spikes, especially for inductive loads.
Q: Can I use this relay for three-phase motors?
A: Yes, the LC1D32U7 is designed for three-phase motor control applications.
Q: What is the lifespan of this relay?
A: The mechanical durability is 10 million operations, and the electrical durability is 1 million operations under rated conditions.
This concludes the documentation for the Schneider Electric LC1D32U7 relay. For further assistance, refer to the manufacturer's datasheet or contact technical support.