

The Schneider MCE 2-25 is a compact and reliable contactor with an integrated overload relay, designed for motor control and protection applications. This component combines the functionality of a contactor and an overload relay into a single unit, simplifying wiring and reducing panel space requirements. It is widely used in industrial automation, motor starters, and control panels to ensure safe and efficient operation of electric motors.








| Parameter | Value |
|---|---|
| Manufacturer | Schneider |
| Part ID | MCE 2-25 |
| Rated Operational Voltage | Up to 690V AC |
| Rated Current | 25A |
| Control Voltage | 24V AC/DC, 110V AC, or 230V AC |
| Frequency | 50/60 Hz |
| Overload Relay Range | 0.1A to 25A (adjustable) |
| Number of Poles | 3P (Three-phase) |
| Mechanical Durability | 10 million operations |
| Electrical Durability | 1 million operations |
| Mounting Type | DIN rail or panel mount |
| Operating Temperature | -20°C to +60°C |
| Terminal Label | Description |
|---|---|
| L1, L2, L3 | Input terminals for three-phase power |
| T1, T2, T3 | Output terminals to the motor |
| Terminal Label | Description |
|---|---|
| A1, A2 | Coil terminals for control voltage |
| 95, 96 | Normally closed (NC) overload relay |
| 97, 98 | Normally open (NO) overload relay |
Wiring the Power Circuit:
Wiring the Control Circuit:
Adjusting the Overload Relay:
Testing the Circuit:
The MCE 2-25 can be controlled using an Arduino UNO by energizing the contactor coil with a relay module. Below is an example code snippet for controlling the contactor using a digital output pin on the Arduino.
// Example: Controlling Schneider MCE 2-25 with Arduino UNO
// This code energizes the contactor coil using a relay module connected to pin 7.
const int relayPin = 7; // Define the pin connected to the relay module
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 on the relay (energize contactor coil)
delay(5000); // Keep the contactor energized for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (de-energize contactor coil)
delay(5000); // Wait for 5 seconds before repeating
}
Note: Use a relay module with an appropriate voltage rating to interface between the Arduino and the contactor coil. Ensure the Arduino's power supply is isolated from the contactor's power circuit.
Contactor Does Not Energize:
Overload Relay Trips Frequently:
Excessive Heat on Terminals:
Humming Noise from Contactor:
Q: Can the MCE 2-25 be used for single-phase motors?
A: Yes, but only two poles of the contactor will be used. Ensure proper wiring and overload relay adjustment.
Q: How do I reset the overload relay after a trip?
A: Press the reset button on the overload relay or power cycle the control circuit, depending on the model.
Q: Can I use the MCE 2-25 in outdoor environments?
A: The MCE 2-25 is not rated for outdoor use unless installed in a weatherproof enclosure.
Q: What is the lifespan of the contactor?
A: The MCE 2-25 has a mechanical durability of 10 million operations and an electrical durability of 1 million operations under normal conditions.