

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 interrupts the flow of electricity when it detects abnormal conditions, ensuring the safety of electrical systems and connected devices.
Below are the key technical details of the 2P MCB:
| Parameter | Value |
|---|---|
| Rated Voltage | 230/400V AC |
| Rated Current | 6A, 10A, 16A, 20A, 32A, 40A |
| Breaking Capacity | 6kA or 10kA |
| Frequency | 50/60 Hz |
| Tripping Curve | B, C, or D |
| Number of Poles | 1P, 2P, 3P, or 4P |
| Operating Temperature | -5°C to +40°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. This is the terminal where power enters. |
| Load (Output) | Connects to the electrical load or circuit being protected. |
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, an MCB can safeguard the power supply feeding the Arduino and its peripherals.
// Example Arduino code to monitor a circuit protected by an MCB
// This code assumes a current sensor is used to detect load current.
const int currentSensorPin = A0; // Analog pin connected to the current sensor
const int threshold = 500; // Current threshold in milliamps
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(currentSensorPin, INPUT);
}
void loop() {
int sensorValue = analogRead(currentSensorPin); // Read current sensor value
float current = sensorValue * (5.0 / 1023.0) * 1000; // Convert to milliamps
// Check if current exceeds threshold
if (current > threshold) {
Serial.println("Warning: High current detected! Check the MCB.");
} else {
Serial.println("Current is within safe limits.");
}
delay(1000); // Wait 1 second before next reading
}
| 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 the MCB with the correct rating or test for proper functionality. |
| MCB lever is stuck | Mechanical damage or debris inside the MCB | Inspect and clean the MCB; replace if necessary. |
| Overheating of terminals | Loose connections or high current | Tighten connections and ensure the MCB is not overloaded. |
Can I use an MCB for DC circuits?
What is the difference between B, C, and D tripping curves?
How do I test if an MCB is working?
Can I reset an MCB after it trips?
By following this documentation, users can effectively utilize the 2P MCB to protect their electrical systems and ensure safe operation.