

A Contactor & Overload is an essential electromechanical device used in electrical circuits to control the flow of power to motors, lighting systems, and other high-power loads. The contactor acts as a switch that can be controlled remotely, while the overload relay protects the connected equipment from damage caused by excessive current or overheating.
These components are widely used in industrial automation, motor control centers, HVAC systems, and other applications requiring reliable switching and protection for electrical loads.








| Parameter | Value |
|---|---|
| Manufacturer | 230V |
| Rated Operating Voltage | 230V AC |
| Rated Current | 9A, 12A, 18A (varies by model) |
| Coil Voltage | 230V AC |
| Number of Poles | 3P (Three Poles) |
| Mechanical Life | 10 million operations |
| Electrical Life | 1 million operations |
| Mounting Type | DIN Rail or Panel Mount |
| Parameter | Value |
|---|---|
| Manufacturer | 230V |
| Current Range | 0.1A to 32A (adjustable) |
| Trip Class | Class 10 |
| Reset Type | Manual/Automatic |
| Contact Configuration | 1 NO + 1 NC |
| Mounting Type | Direct mount on contactor |
| Ambient Temperature | -20°C to +60°C |
| Pin Label | Description |
|---|---|
| A1, A2 | Coil terminals for control voltage |
| L1, L2, L3 | Input terminals for power supply |
| T1, T2, T3 | Output terminals to the load |
| NO | Normally Open auxiliary contact |
| NC | Normally Closed auxiliary contact |
| Pin Label | Description |
|---|---|
| L1, L2, L3 | Input terminals for power supply |
| T1, T2, T3 | Output terminals to the load |
| 95, 96 | Normally Closed (NC) trip contact |
| 97, 98 | Normally Open (NO) trip contact |
Wiring the Contactor:
Installing the Overload Relay:
Control Circuit:
While contactors and overload relays are typically controlled by industrial control systems, you can use an Arduino UNO to control a contactor for demonstration purposes. Below is an example code to control a contactor using a relay module connected to the Arduino:
// Arduino code to control a contactor using a relay module
// Connect the relay module's IN pin to Arduino pin 7
// Ensure the relay module is rated for 230V AC switching
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Turn the contactor ON
digitalWrite(relayPin, HIGH); // Activate relay
delay(5000); // Keep contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(relayPin, LOW); // Deactivate relay
delay(5000); // Keep contactor OFF for 5 seconds
}
Contactor Not Switching:
Overload Relay Tripping Frequently:
Excessive Heating of Contacts:
No Output from Overload Relay: