Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use INTER MANUEL_230_2P: Examples, Pinouts, and Specs

Image of INTER MANUEL_230_2P
Cirkit Designer LogoDesign with INTER MANUEL_230_2P in Cirkit Designer

Introduction

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.

Explore Projects Built with INTER MANUEL_230_2P

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Dual Motor Control System with DPDT Switches and Planetary Gearbox Motors
Image of LEAD SCREW : A project utilizing INTER MANUEL_230_2P in a practical application
This circuit features two DPDT switches that control the direction of two MRB Planetary gearbox motors. The switches are connected to a connector, allowing for external control inputs to change the motor directions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Servo Control System with 2S 30A BMS and TP5100 Charger
Image of servo power supply: A project utilizing INTER MANUEL_230_2P in a practical application
This circuit is a battery management and charging system for a 2S lithium-ion battery pack, which powers multiple MG996R servos. The TP5100 module charges the battery pack from a 12V power supply, while the 2S 30A BMS ensures safe operation and distribution of power to the servos.
Cirkit Designer LogoOpen Project in Cirkit Designer
Electromechanical Pump Control Circuit with Emergency Stop
Image of Pelton.: A project utilizing INTER MANUEL_230_2P in a practical application
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Industrial Power Distribution and Safety Control System
Image of Control Diagram: A project utilizing INTER MANUEL_230_2P in a practical application
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with INTER MANUEL_230_2P

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of LEAD SCREW : A project utilizing INTER MANUEL_230_2P in a practical application
Dual Motor Control System with DPDT Switches and Planetary Gearbox Motors
This circuit features two DPDT switches that control the direction of two MRB Planetary gearbox motors. The switches are connected to a connector, allowing for external control inputs to change the motor directions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of servo power supply: A project utilizing INTER MANUEL_230_2P in a practical application
Battery-Powered Servo Control System with 2S 30A BMS and TP5100 Charger
This circuit is a battery management and charging system for a 2S lithium-ion battery pack, which powers multiple MG996R servos. The TP5100 module charges the battery pack from a 12V power supply, while the 2S 30A BMS ensures safe operation and distribution of power to the servos.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Pelton.: A project utilizing INTER MANUEL_230_2P in a practical application
Electromechanical Pump Control Circuit with Emergency Stop
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Control Diagram: A project utilizing INTER MANUEL_230_2P in a practical application
Industrial Power Distribution and Safety Control System
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Circuit Isolation: Used to disconnect electrical circuits for maintenance or safety.
  • Load Switching: Ideal for controlling dual-phase loads in industrial machinery.
  • Backup Power Systems: Commonly used in manual transfer switches for switching between power sources.
  • Residential Use: Suitable for controlling high-power appliances or dual-phase systems.

Technical Specifications

The INTER MANUEL_230_2P is designed to meet the needs of robust electrical systems. Below are its key technical details:

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

Pin Configuration and Descriptions

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)

Usage Instructions

The INTER MANUEL_230_2P is simple to use and install. Follow the steps below to integrate it into your circuit safely and effectively.

How to Use the Component in a Circuit

  1. Preparation:

    • Ensure the power supply is turned off before installation.
    • Verify that the rated voltage and current of the circuit match the specifications of the switch.
  2. Wiring:

    • Connect the input terminals (1 and 3) to the power source.
    • Connect the output terminals (2 and 4) to the load or downstream circuit.
    • Tighten the terminal screws securely to ensure a reliable connection.
  3. Mounting:

    • Mount the switch onto a DIN rail in the electrical panel.
    • Ensure the switch is securely locked in place to prevent movement.
  4. Operation:

    • Use the manual lever to toggle the switch between ON and OFF positions.
    • Verify the continuity of the circuit using a multimeter after installation.

Important Considerations and Best Practices

  • Safety First: Always disconnect the power supply before installation or maintenance.
  • Load Compatibility: Ensure the connected load does not exceed the rated current of 32A.
  • Environmental Conditions: Avoid installing the switch in areas with excessive moisture, dust, or extreme temperatures.
  • Periodic Maintenance: Inspect the switch periodically for signs of wear or damage to ensure reliable operation.

Arduino Integration

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.

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Switch Does Not Operate:

    • Cause: Loose or incorrect wiring.
    • Solution: Double-check all connections and ensure the terminals are securely tightened.
  2. Overheating:

    • Cause: Load exceeds the rated current of 32A.
    • Solution: Reduce the load or replace the switch with one that has a higher current rating.
  3. Intermittent Operation:

    • Cause: Worn-out contacts due to prolonged use.
    • Solution: Inspect the contacts and replace the switch if necessary.
  4. Switch Fails to Mount on DIN Rail:

    • Cause: Incorrect mounting technique or damaged mounting clip.
    • Solution: Ensure the mounting clip is intact and follow the proper mounting procedure.

Solutions and Tips for Troubleshooting

  • Use a multimeter to verify the continuity of the switch in both ON and OFF positions.
  • Inspect the switch periodically for signs of wear, corrosion, or damage.
  • If the switch is used in a high-vibration environment, check the terminal screws regularly to ensure they remain tight.

By following this documentation, users can effectively integrate and maintain the INTER MANUEL_230_2P in their electrical systems.