The BAOMAIN HC1-20/20 110V is a 2P (two-pole) contactor designed for controlling electrical circuits in industrial and automation applications. This electromechanical switch is capable of opening or closing circuits to manage power delivery to devices such as motors, lighting systems, and heating elements. Its robust design ensures reliable operation in demanding environments.
The following table outlines the key technical details of the BAOMAIN HC1-20/20 110V contactor:
Parameter | Value |
---|---|
Manufacturer | BAOMAIN |
Part Number | HC1-20/20 110V |
Type | 2P (Two-Pole) Contactor |
Rated Voltage (Coil) | 110V AC |
Rated Current (Load) | 20A |
Rated Voltage (Load) | Up to 690V AC |
Frequency | 50/60 Hz |
Mechanical Life | 1,000,000 operations |
Electrical Life | 100,000 operations |
Mounting Type | DIN Rail or Panel Mount |
Operating Temperature | -5°C to +40°C |
Insulation Resistance | ≥10 MΩ |
Pin/Terminal | Description |
---|---|
A1, A2 | Coil terminals for energizing the contactor (110V AC) |
1L1, 3L2 | Input terminals for the load circuit (Line side) |
2T1, 4T2 | Output terminals for the load circuit (Load side) |
Auxiliary Contacts (Optional) | For control or signaling circuits (if equipped) |
Power Supply to the Coil:
Load Connection:
Control Circuit (Optional):
Mounting:
The BAOMAIN HC1-20/20 110V contactor can be controlled using an Arduino UNO and a relay module. Below is an example circuit and code to control the contactor.
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off at startup
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay (and contactor) ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the relay (and contactor) OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the contactor OFF for 5 seconds
}
Issue | Possible Cause | Solution |
---|---|---|
Contactor does not energize | Coil voltage is incorrect or not supplied | Verify the coil voltage (110V AC) |
Load does not receive power | Loose connections or faulty wiring | Check and secure all connections |
Contactor buzzes when energized | Voltage fluctuations or damaged coil | Ensure stable voltage; replace the coil if needed |
Overheating of the contactor | Overloaded circuit or poor ventilation | Reduce load current; improve ventilation |
Can I use this contactor with a DC load?
What is the maximum load current?
Can I mount the contactor horizontally?
Does the contactor include auxiliary contacts?
This documentation provides a comprehensive guide to using the BAOMAIN HC1-20/20 110V 2P contactor. For further assistance, refer to the manufacturer's datasheet or contact technical support.