

A contactor is an electrically controlled switch designed to handle high-current power circuits. Unlike standard relays, contactors are specifically engineered for applications requiring frequent switching and high current capacity. Manufactured by TE Connectivity, the Contactor Main is a robust and reliable solution for industrial and commercial power control needs.








The Contactor Main typically has the following pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | A1 | Coil positive terminal (24V DC input) |
| 2 | A2 | Coil negative terminal (ground) |
| 3 | L1 | Power input terminal (phase 1) |
| 4 | L2 | Power input terminal (phase 2) |
| 5 | L3 | Power input terminal (phase 3) |
| 6 | T1 | Power output terminal (phase 1) |
| 7 | T2 | Power output terminal (phase 2) |
| 8 | T3 | Power output terminal (phase 3) |
| 9 | Auxiliary NO | Auxiliary contact, Normally Open (used for control or feedback circuits) |
| 10 | Auxiliary NC | Auxiliary contact, Normally Closed (used for control or feedback circuits) |
Power the Coil:
Connect the Power Circuit:
Use Auxiliary Contacts (Optional):
Safety Precautions:
The Contactor Main can be controlled using an Arduino UNO. Below is an example of how to control the contactor using a digital output pin and a relay module (to handle the 24V DC coil voltage).
// Arduino code to control a contactor using a relay module
const int relayPin = 7; // Digital 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 at startup
}
void loop() {
// Turn the contactor ON
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the contactor OFF for 5 seconds
}
Note:
| Issue | Possible Cause | Solution |
|---|---|---|
| Contactor does not activate | Coil not receiving power | Check the power supply and ensure proper connections to A1 and A2 terminals. |
| Contactor buzzes or vibrates | Insufficient coil voltage | Verify the coil voltage is 24V DC and stable. |
| Overheating during operation | Overloaded or poor ventilation | Ensure the load does not exceed the contactor's rated current. Improve airflow. |
| Auxiliary contacts not working | Incorrect wiring or damaged contacts | Verify wiring and test the auxiliary contacts for continuity. |
| Frequent contactor failure | Excessive switching or improper load handling | Use a contactor with higher ratings or reduce switching frequency. |
Can the contactor handle DC loads?
What is the difference between a contactor and a relay?
How do I know if the contactor is working?
Can I use the contactor in outdoor environments?
By following this documentation, you can effectively integrate the Contactor Main into your power control systems while ensuring safe and reliable operation.