

The INTER MANUEL_230_2P, manufactured by GEYA, is a manual switch designed for controlling electrical circuits. It is rated for 230V and supports two poles, making it suitable for applications requiring the isolation or switching of dual-phase electrical systems. This component is widely used in industrial, commercial, and residential settings for circuit control and safety purposes.








The INTER MANUEL_230_2P is designed to meet the needs of robust electrical systems. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Rated Voltage | 230V AC |
| Number of Poles | 2 |
| Rated Current | 32A |
| Operating Temperature | -25°C to +55°C |
| Insulation Resistance | ≥ 100MΩ |
| Mechanical Durability | 10,000 operations |
| Electrical Durability | 5,000 operations |
| Mounting Type | DIN Rail |
| Dimensions (L x W x H) | 90mm x 36mm x 60mm |
| Weight | 150g |
The INTER MANUEL_230_2P features a straightforward terminal configuration for easy installation. Below is the pin description:
| Terminal Number | Description |
|---|---|
| 1 | Input for Pole 1 (Phase 1) |
| 2 | Output for Pole 1 (Phase 1) |
| 3 | Input for Pole 2 (Phase 2) |
| 4 | Output for Pole 2 (Phase 2) |
The INTER MANUEL_230_2P is simple to use and install. Follow the steps below to integrate it into your circuit safely and effectively.
Preparation:
Wiring:
Mounting:
Operation:
While the INTER MANUEL_230_2P is a manual switch and does not directly interface with microcontrollers like Arduino, it can be used in conjunction with an Arduino-based system for controlling power to devices. For example, you can use the switch to isolate power to a circuit controlled by an Arduino.
Here is an example of Arduino code to monitor the state of the switch using a digital input pin:
// Define the pin connected to the switch output
const int switchPin = 2; // Digital pin 2 is used for monitoring the switch
void setup() {
pinMode(switchPin, INPUT); // Set the pin as an input
Serial.begin(9600); // Initialize serial communication for debugging
}
void loop() {
int switchState = digitalRead(switchPin); // Read the state of the switch
if (switchState == HIGH) {
Serial.println("Switch is ON"); // Print message if the switch is ON
} else {
Serial.println("Switch is OFF"); // Print message if the switch is OFF
}
delay(500); // Add a small delay to avoid flooding the serial monitor
}
Note: To use this code, you will need to connect one of the switch's output terminals to the Arduino's digital input pin and the other to the ground.
Switch Does Not Operate:
Overheating:
Intermittent Operation:
Switch Fails to Mount on DIN Rail:
By following this documentation, users can effectively integrate and maintain the INTER MANUEL_230_2P in their electrical systems.