The Contacteur HC/HP (Manufacturer Part ID: 092701) by Legrand is a versatile contactor designed for controlling high and low power circuits. It is commonly used in heating and cooling systems, enabling the switching of electrical loads based on demand. This component is particularly useful in systems that require time-based or tariff-based switching, such as off-peak electricity usage (Heures Creuses/Heures Pleines in French).
Parameter | Value |
---|---|
Manufacturer | Legrand |
Part ID | 092701 |
Rated Voltage | 230V AC |
Rated Current | 25A |
Control Voltage | 230V AC |
Frequency | 50/60 Hz |
Number of Poles | 2P (Double Pole) |
Mounting Type | DIN Rail |
Operating Temperature | -5°C to +40°C |
Dimensions (H x W x D) | 83 x 36 x 66 mm |
Compliance Standards | IEC 60947-4-1, CE Marking |
The Contacteur HC/HP has a straightforward terminal layout for both the load and control circuits. Below is the pin configuration:
Terminal Label | Description |
---|---|
1 | Load Input (Phase) |
2 | Load Output (Phase) |
3 | Load Input (Neutral) |
4 | Load Output (Neutral) |
Terminal Label | Description |
---|---|
A1 | Control Input (Phase) |
A2 | Control Input (Neutral) |
1
and 3
.2
and 4
.A1
(Phase) and A2
(Neutral).A1
and A2
.While the Contacteur HC/HP is typically controlled by 230V AC signals, you can use an Arduino UNO to control it indirectly via a relay module. Below is an example:
A1
terminal.A2
terminal to Neutral.// Example code to control the Contacteur HC/HP using an Arduino UNO
// via a relay module. The relay is connected to pin 7.
const int relayPin = 7; // Define the 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 relay (and contactor) ON
digitalWrite(relayPin, HIGH);
delay(60000); // Keep the contactor ON for 1 minute
// Turn the relay (and contactor) OFF
digitalWrite(relayPin, LOW);
delay(60000); // Keep the contactor OFF for 1 minute
}
Issue | Possible Cause | Solution |
---|---|---|
Contactor does not switch on | No control signal at A1 and A2 |
Verify the control circuit wiring and signal. |
Contactor makes a buzzing noise | Insufficient control voltage | Check that the control voltage is 230V AC. |
Load does not receive power | Incorrect load wiring | Ensure the load is connected to terminals 2 and 4 . |
Contactor overheats | Overloaded circuit | Verify the load current does not exceed 25A. |
Can I use the Contacteur HC/HP with DC control signals?
What happens if the control signal is interrupted?
Can I use this contactor for three-phase loads?
Is the contactor suitable for outdoor use?
By following this documentation, you can effectively integrate the Legrand Contacteur HC/HP (092701) into your electrical systems for reliable and efficient load control.