

A contactor is an electrically controlled switch manufactured by TE, designed for switching electrical power circuits. Unlike standard relays, contactors are specifically engineered to handle higher currents, making them ideal for industrial and commercial applications. They are commonly used in motor control systems, lighting circuits, heating systems, and other high-power electrical devices.








Below are the general technical specifications for a TE-manufactured contactor. Always refer to the specific datasheet for the exact model you are using.
The pin configuration of a contactor depends on its specific design. Below is a general example for a DPST (Double Pole Single Throw) contactor:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil Terminal A | One side of the electromagnetic coil. Connect to the control voltage source. |
| 2 | Coil Terminal B | The other side of the electromagnetic coil. Connect to the control voltage source. |
| 3 | Load Terminal 1 | First input terminal for the high-power circuit. |
| 4 | Load Terminal 2 | First output terminal for the high-power circuit. |
| 5 | Load Terminal 3 | Second input terminal for the high-power circuit. |
| 6 | Load Terminal 4 | Second output terminal for the high-power circuit. |
Note: The exact pin configuration may vary depending on the contactor model. Always consult the datasheet for your specific component.
Below is an example of how to control a 24V DC contactor using an Arduino UNO and a transistor as a driver.
// Define the pin connected to the transistor base
const int controlPin = 9;
void setup() {
pinMode(controlPin, OUTPUT); // Set the control pin as an output
}
void loop() {
digitalWrite(controlPin, HIGH); // Energize the contactor coil
delay(5000); // Keep the contactor closed for 5 seconds
digitalWrite(controlPin, LOW); // De-energize the contactor coil
delay(5000); // Keep the contactor open for 5 seconds
}
Circuit Notes:
Contactor Does Not Activate:
Excessive Arcing at Contacts:
Overheating:
Buzzing Noise:
Q: Can I use a contactor for DC loads?
A: Yes, but ensure the contactor is rated for DC operation. DC contactors are designed to handle the challenges of breaking DC circuits, such as higher arcing.
Q: How do I choose the right contactor for my application?
A: Consider the load type (AC or DC), voltage, current, and whether the load is resistive or inductive. Select a contactor with appropriate ratings and features.
Q: Can I control a contactor directly with an Arduino?
A: No, the Arduino cannot supply enough current to energize the coil. Use a transistor or relay as an intermediary driver.
Q: What is the difference between a relay and a contactor?
A: Relays are designed for low-power applications, while contactors are built to handle high-power circuits and higher currents.
By following this documentation, you can effectively integrate a TE contactor into your electrical or automation projects.