

The MCB 1 Phase (Miniature Circuit Breaker) is an essential safety device designed for single-phase electrical circuits. It provides overcurrent protection by automatically disconnecting the circuit when excessive current flows, thereby preventing damage to electrical devices and reducing the risk of fire. MCBs are widely used in residential, commercial, and industrial applications to ensure the safety and reliability of electrical systems.








The following table outlines the key technical specifications of the MCB 1 Phase:
| Parameter | Specification |
|---|---|
| Rated Voltage | 230V AC |
| Rated Current | 6A, 10A, 16A, 20A, 32A (varies by model) |
| Breaking Capacity | 6kA |
| Number of Poles | 1 (Single Phase) |
| Tripping Curve | B, C, or D (depending on application) |
| Frequency | 50/60 Hz |
| Operating Temperature | -5°C to +55°C |
| Mounting Type | DIN Rail |
| Standards Compliance | IEC 60898-1 |
The MCB 1 Phase does not have traditional pins but instead features terminals for wiring. Below is a description of the terminals:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the incoming live wire (phase). |
| Load (Output) | Connects to the outgoing live wire to the load. |
While MCBs are not directly connected to microcontrollers like the Arduino UNO, they can be used in conjunction with relays or other control circuits to protect the system. Below is an example of how an Arduino can control a relay to manage a circuit protected by an MCB:
// Example: Controlling a relay to manage an MCB-protected circuit
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 initially
}
void loop() {
// Turn on the relay (simulate turning on the circuit)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the circuit on for 5 seconds
// Turn off the relay (simulate turning off the circuit)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the circuit off for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| MCB trips frequently | Overload or short circuit in the circuit. | Check the load and wiring for faults. |
| MCB does not trip during a fault | Faulty MCB or incorrect wiring. | Replace the MCB or verify connections. |
| MCB cannot be reset | Persistent fault in the circuit. | Identify and resolve the fault before resetting. |
| Loose connections at terminals | Improper tightening of screws. | Ensure terminals are securely tightened. |
Can I use an MCB for DC circuits?
What is the difference between B, C, and D curve MCBs?
How do I select the correct MCB rating?
Can I use an MCB as a switch?
By following this documentation, users can safely and effectively integrate the MCB 1 Phase into their electrical systems.