

A Miniature Circuit Breaker (MCB) rated at 4 Amperes is an essential safety device used in electrical systems. It is designed to protect circuits from overload and short circuit conditions by automatically interrupting the flow of current when it exceeds the rated capacity. The MCB 4A is compact, reliable, and widely used in residential, commercial, and industrial applications.








The following table outlines the key technical details of the MCB 4A:
| Parameter | Specification |
|---|---|
| Rated Current | 4 Amperes |
| Rated Voltage | 230/240V AC (single-phase) |
| Breaking Capacity | 6 kA (kiloamperes) |
| Tripping Curve | Type B (suitable for resistive loads) |
| Number of Poles | 1P (Single Pole) |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN Rail (35mm standard) |
| Dimensions | 18mm width per pole |
| Compliance Standards | IEC 60898-1 |
The MCB 4A does not have traditional pins but instead features terminals for wire connections. The table below describes the terminal configuration:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the incoming live wire (phase) |
| Load (Output) | Connects to the outgoing live wire to the load |
Mounting the MCB:
Wiring the MCB:
Testing the MCB:
While the MCB itself is not directly connected to an Arduino UNO, it can be used to protect circuits powered by the Arduino. For example, if you are powering a motor or LED strip through a relay controlled by the Arduino, the MCB can safeguard the circuit.
// Example Arduino code to control a relay for a load protected by the MCB 4A
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 at startup
}
void loop() {
// Turn on the relay (and the connected load)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the load on for 5 seconds
// Turn off the relay (and the connected load)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the load off for 5 seconds
}
Note: Ensure the load connected to the relay does not exceed the MCB's 4A rating.
| Issue | Possible Cause | Solution |
|---|---|---|
| MCB trips frequently | Overload or short circuit in the circuit | Check the connected load and wiring for faults. Reduce the load if necessary. |
| MCB does not trip during a fault | Faulty MCB or incorrect installation | Verify the wiring and test the MCB using the test button. Replace if defective. |
| MCB does not stay in the "ON" position | Loose connections or internal damage | Tighten all terminal screws and inspect for damage. Replace if needed. |
Can I use the MCB 4A for inductive loads like motors?
What happens if I exceed the MCB's rated current?
How do I reset the MCB after it trips?
Can I use the MCB 4A in a DC circuit?
By following this documentation, you can safely and effectively use the MCB 4A to protect your electrical circuits.