

A Miniature Circuit Breaker (MCB) is an electromechanical device designed to protect electrical circuits from damage caused by overloads and short circuits. Manufactured by 2P, this compact and reliable component automatically disconnects the circuit when it detects abnormal current flow, ensuring the safety of electrical systems and connected devices.








Below are the key technical details for the 2P MCB:
| Parameter | Value |
|---|---|
| Rated Voltage | 230/400V AC |
| Rated Current | 6A, 10A, 16A, 20A, 32A, 40A |
| Breaking Capacity | 6kA or 10kA |
| Number of Poles | 1P, 2P, 3P, 4P |
| Tripping Curve | B, C, or D |
| Frequency | 50/60 Hz |
| Operating Temperature | -5°C to +55°C |
| Mounting Type | DIN Rail (35mm) |
| Standards Compliance | IEC/EN 60898-1 |
The MCB does not have traditional pins but instead features terminals for electrical connections. Below is a description of the terminal configuration:
| Terminal | Description |
|---|---|
| Line Input | Connects to the incoming power supply (phase wire). |
| Load Output | Connects to the outgoing circuit or load. |
| Neutral | (For 2P, 3P, or 4P models) Connects to the neutral wire for balanced operation. |
While MCBs are not directly connected to microcontrollers like the Arduino UNO, they can be used to protect circuits powered by the Arduino. For example, if you are powering a motor via an external power supply, an MCB can be installed between the power supply and the motor to prevent damage from overcurrent.
// Example Arduino code to control a motor protected by an MCB
const int motorPin = 9; // Pin connected to motor driver input
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
digitalWrite(motorPin, HIGH); // Turn on the motor
delay(5000); // Run motor for 5 seconds
digitalWrite(motorPin, LOW); // Turn off the motor
delay(2000); // Wait for 2 seconds before restarting
}
// Note: Ensure the MCB is installed between the power supply and motor driver
// to protect the circuit from overcurrent or short circuits.
| Issue | Possible Cause | Solution |
|---|---|---|
| MCB trips frequently | Overloaded circuit or short circuit | Reduce the load or check for wiring faults. |
| MCB does not trip during a fault | Incorrect MCB rating or faulty MCB | Replace with the correct MCB rating or test the MCB for proper operation. |
| Loose connections at terminals | Improper tightening of screws | Re-tighten the terminal screws securely. |
| MCB lever stuck in the "OFF" position | Internal mechanism damaged | Replace the MCB with a new one. |
Can I use an MCB for DC circuits?
What is the difference between an MCB and a fuse?
How do I select the right MCB for my application?
Can I install an MCB without a DIN rail?
By following this documentation, you can safely and effectively use the 2P MCB to protect your electrical systems.