

The Kontaktor 1, manufactured by Schneider (Part ID: High Volt), is an electrically controlled switch designed for high-current applications. It functions similarly to a relay but is specifically engineered to handle heavy loads, making it ideal for industrial and commercial use. This contactor is commonly used to control motors, lighting systems, heating elements, and other power circuits.








| Parameter | Value |
|---|---|
| Manufacturer | Schneider |
| Part ID | High Volt |
| Rated Operating Voltage | 24V DC (coil voltage) |
| Maximum Load Voltage | 690V AC |
| Rated Current | 32A |
| Number of Poles | 3P (Three Poles) |
| Contact Configuration | Normally Open (NO) |
| Mechanical Durability | 10 million operations |
| Electrical Durability | 1 million operations |
| Operating Temperature | -25°C to +60°C |
| Mounting Type | DIN Rail or Panel Mount |
The Kontaktor 1 has the following terminal layout:
| Terminal Label | Description |
|---|---|
| L1, L2, L3 | Input terminals for three-phase AC |
| T1, T2, T3 | Output terminals for three-phase AC |
| Terminal Label | Description |
|---|---|
| A1 | Coil positive terminal (24V DC) |
| A2 | Coil negative terminal (ground) |
| Terminal Label | Description |
|---|---|
| 13, 14 | Auxiliary contact (Normally Open) |
| 21, 22 | Auxiliary contact (Normally Closed) |
Power Connections:
Control Circuit:
Auxiliary Contacts (if applicable):
The Kontaktor 1 can be controlled using an Arduino UNO by interfacing the control coil with a relay module or transistor circuit. Below is an example Arduino sketch:
// Example: Controlling Kontaktor 1 with Arduino UNO
// This code energizes the contactor coil using a digital output pin.
const int coilPin = 7; // Pin connected to the relay or transistor circuit
void setup() {
pinMode(coilPin, OUTPUT); // Set the pin as an output
digitalWrite(coilPin, LOW); // Ensure the coil is initially off
}
void loop() {
digitalWrite(coilPin, HIGH); // Energize the contactor coil
delay(5000); // Keep the contactor on for 5 seconds
digitalWrite(coilPin, LOW); // De-energize the contactor coil
delay(5000); // Wait for 5 seconds before repeating
}
Note: Use a relay module or transistor circuit to interface the Arduino with the contactor coil, as the Arduino cannot directly supply the required current.
Contactor Does Not Energize:
Excessive Heating:
Chattering Noise:
Auxiliary Contacts Not Working:
Q: Can the Kontaktor 1 be used with single-phase loads?
A: Yes, connect the single-phase load to one of the poles (e.g., L1-T1) and leave the other poles unused.
Q: What is the purpose of auxiliary contacts?
A: Auxiliary contacts are used for signaling, interlocking, or controlling secondary circuits.
Q: How often should the contactor be maintained?
A: Inspect the contactor every 6 months for wear, dirt, or loose connections, especially in high-use environments.
Q: Can the contactor handle DC loads?
A: The Kontaktor 1 is primarily designed for AC loads. For DC loads, consult the manufacturer for compatibility and derating guidelines.