

The Interrupteur 3 Poles (Three-Pole Switch) is an electrical component designed to control multiple circuits simultaneously. It features three separate poles, each capable of connecting or disconnecting an independent circuit. This makes it ideal for applications where multiple circuits need to be controlled in unison, such as in industrial machinery, three-phase motor systems, or complex lighting setups.








The following table outlines the key technical details of the Interrupteur 3 Poles:
| Parameter | Specification |
|---|---|
| Voltage Rating | 250V AC / 440V AC (varies by model) |
| Current Rating | 10A, 16A, 32A (depending on model) |
| Number of Poles | 3 |
| Switching Mechanism | Manual or automatic |
| Contact Type | Normally Open (NO) or Normally Closed (NC) |
| Mounting Type | Panel-mounted or DIN rail-mounted |
| Operating Temperature | -20°C to +70°C |
| Insulation Resistance | ≥ 100 MΩ |
The Interrupteur 3 Poles typically has six terminals, with two terminals per pole (input and output). The table below describes the terminal configuration:
| Terminal | Description |
|---|---|
| L1 (Input) | Input terminal for Pole 1 |
| T1 (Output) | Output terminal for Pole 1 |
| L2 (Input) | Input terminal for Pole 2 |
| T2 (Output) | Output terminal for Pole 2 |
| L3 (Input) | Input terminal for Pole 3 |
| T3 (Output) | Output terminal for Pole 3 |
While the Interrupteur 3 Poles is not directly compatible with low-voltage microcontrollers like the Arduino UNO, it can be used in conjunction with relays to control high-power circuits. Below is an example of how to use an Arduino UNO to control a three-pole switch via a relay module:
// Example code to control a relay module for a three-pole switch
// Ensure the relay module is rated for the voltage and current of the switch
const int relayPin = 7; // 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 initially
}
void loop() {
// Turn on the relay (activates the three-pole switch)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the switch on for 5 seconds
// Turn off the relay (deactivates the three-pole switch)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the switch off for 5 seconds
}
Switch does not operate properly:
Overheating of the switch:
Arcing or sparking during operation:
Switch fails to isolate circuits:
By following this documentation, users can effectively integrate and maintain the Interrupteur 3 Poles in their electrical systems.