

A DC contactor is an electromechanical switch designed to control high-voltage DC loads. Manufactured by Me, this component operates similarly to a relay but is specifically optimized for direct current applications. It provides reliable switching and isolation in circuits, making it an essential component in various industrial and automotive systems.








| Parameter | Value |
|---|---|
| Operating Voltage Range | 12V DC to 1000V DC |
| Rated Current | 50A, 100A, 200A (varies by model) |
| Coil Voltage | 12V DC, 24V DC, or 48V DC |
| Contact Resistance | ≤ 0.5 mΩ |
| Insulation Resistance | ≥ 1000 MΩ |
| Mechanical Life | ≥ 1,000,000 operations |
| Electrical Life | ≥ 100,000 operations |
| Operating Temperature | -40°C to +85°C |
| Mounting Style | Panel mount |
| Pin Name | Description |
|---|---|
| Coil (+) | Positive terminal of the contactor's coil. Used to energize the contactor. |
| Coil (-) | Negative terminal of the contactor's coil. Completes the coil circuit. |
| Main Contact 1 | One side of the high-current switching contact. |
| Main Contact 2 | The other side of the high-current switching contact. |
| Auxiliary NC | Normally closed auxiliary contact for monitoring or control purposes. |
| Auxiliary NO | Normally open auxiliary contact for monitoring or control purposes. |
Below is an example of how to control a 12V DC contactor using an Arduino UNO and a transistor as a driver.
// Define the pin connected to the transistor's base
const int contactorPin = 9;
void setup() {
pinMode(contactorPin, OUTPUT); // Set the pin as an output
}
void loop() {
digitalWrite(contactorPin, HIGH); // Energize the contactor
delay(5000); // Keep the contactor closed for 5 seconds
digitalWrite(contactorPin, LOW); // De-energize the contactor
delay(5000); // Wait for 5 seconds before repeating
}
Circuit Notes:
Contactor Does Not Energize:
Excessive Heat:
Arcing on Main Contacts:
Auxiliary Contacts Not Working:
Q: Can I use a DC contactor for AC loads?
A: No, DC contactors are specifically designed for direct current applications. For AC loads, use an AC contactor.
Q: How do I select the right DC contactor for my application?
A: Consider the operating voltage, current, coil voltage, and environmental conditions (e.g., temperature, humidity). Ensure the contactor's ratings exceed the maximum requirements of your application.
Q: What is the difference between a relay and a DC contactor?
A: While both are electromechanical switches, DC contactors are designed for higher current and voltage ratings, making them suitable for heavy-duty applications. Relays are typically used for lower-power circuits.
Q: Can I mount the contactor in any orientation?
A: Most DC contactors can be mounted in any orientation, but refer to the manufacturer's datasheet for specific recommendations.