

A magnetic contactor, part ID MC_01, manufactured by Custom, is an electrically controlled switch designed for switching power circuits. Unlike standard relays, magnetic contactors are specifically engineered to handle higher current applications, making them ideal for industrial and commercial use. The device operates using an electromagnet that, when energized, closes the contacts to allow current to flow through the circuit.








| Parameter | Value |
|---|---|
| Manufacturer | Custom |
| Part ID | MC_01 |
| Rated Operating Voltage | 24V DC (coil voltage) |
| Contact Voltage Rating | Up to 600V AC |
| Contact Current Rating | Up to 50A |
| Number of Poles | 3 (Three-phase) |
| Coil Power Consumption | 5W |
| Mechanical Life | 10 million operations |
| Electrical Life | 1 million operations |
| Operating Temperature | -20°C to 60°C |
| Mounting Type | DIN rail or panel mount |
| Pin/Terminal Label | Description |
|---|---|
| L1, L2, L3 | Input terminals for the three-phase power supply |
| T1, T2, T3 | Output terminals for the load connection |
| A1, A2 | Coil terminals for energizing the contactor |
| NO (Normally Open) | Auxiliary contact for control circuit (optional) |
| NC (Normally Closed) | Auxiliary contact for control circuit (optional) |
Power Supply Connection:
Load Connection:
Coil Connection:
Auxiliary Contacts (Optional):
Below is an example of how to control the magnetic contactor using an Arduino UNO:
// Magnetic Contactor Control with Arduino UNO
// This example demonstrates how to use a digital pin to control the contactor coil.
const int contactorPin = 7; // Pin connected to the contactor coil (via a relay or transistor)
void setup() {
pinMode(contactorPin, OUTPUT); // Set the pin as an output
digitalWrite(contactorPin, LOW); // Ensure the contactor is off initially
}
void loop() {
// Turn the contactor ON
digitalWrite(contactorPin, HIGH);
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(contactorPin, LOW);
delay(5000); // Keep the contactor OFF for 5 seconds
}
Note: Use a relay module or transistor circuit to interface the Arduino with the contactor coil, as the Arduino cannot directly drive the coil due to its current limitations.
Contactor Does Not Energize:
Contacts Do Not Close Even When Coil is Energized:
Excessive Noise During Operation:
Overheating:
Q: Can I use the MC_01 contactor for single-phase applications?
A: Yes, you can use it for single-phase applications by connecting only one pair of input and output terminals (e.g., L1 to T1).
Q: What is the purpose of the auxiliary contacts?
A: Auxiliary contacts are used for control or feedback purposes, such as signaling the contactor's status to a control system.
Q: How do I know when to replace the contactor?
A: Replace the contactor if you notice excessive wear on the contacts, frequent failures to energize, or if it has reached its rated mechanical or electrical life.
Q: Can I mount the contactor in any orientation?
A: It is recommended to mount the contactor vertically for optimal performance and longevity.