

The INTER MANUEL_230_2P, manufactured by GEYA, is a manual switch designed for controlling electrical circuits operating at 230V. This two-pole switch is ideal for applications requiring the simultaneous control of multiple circuits or devices. Its robust design ensures reliable operation in residential, commercial, and industrial environments.








The following table outlines the key technical details of the INTER MANUEL_230_2P:
| Parameter | Specification |
|---|---|
| Rated Voltage | 230V AC |
| Rated Current | 32A |
| Number of Poles | 2 |
| Switching Mechanism | Manual |
| Operating Temperature | -20°C to 55°C |
| Mounting Type | DIN Rail |
| Dimensions | 90mm x 36mm x 60mm |
| Compliance Standards | IEC 60947-3 |
The INTER MANUEL_230_2P features a straightforward terminal configuration for easy installation. The table below describes the terminal connections:
| Terminal | Description |
|---|---|
| L1 | Input for the first pole (live wire) |
| L2 | Input for the second pole (live wire) |
| T1 | Output for the first pole (connected load) |
| T2 | Output for the second pole (connected load) |
| Ground | Optional grounding terminal for safety (if present) |
While the INTER MANUEL_230_2P is not directly compatible with Arduino due to its manual operation and high voltage rating, it can be used in conjunction with relays or contactors controlled by an Arduino. Below is an example of how to use an Arduino to control a relay that operates the INTER MANUEL_230_2P:
// Example code to control a relay with Arduino
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn relay ON
delay(5000); // Keep relay ON for 5 seconds
digitalWrite(relayPin, LOW); // Turn relay OFF
delay(5000); // Keep relay OFF for 5 seconds
}
Note: Ensure proper isolation between the Arduino and the high-voltage circuit controlled by the INTER MANUEL_230_2P.
Switch Does Not Operate:
Overheating:
Sparking During Operation:
Switch Fails to Stay in Position:
By following this documentation, users can effectively install, operate, and troubleshoot the INTER MANUEL_230_2P for a wide range of applications.