









The AC MCB does not have traditional "pins" like electronic components but instead features terminals for wiring. Below is a description of the terminals:
| Terminal Name | Description | Connection Type |
|---|---|---|
| Line (Input) | Connects to the incoming live wire | Screw terminal |
| Load (Output) | Connects to the outgoing live wire | Screw terminal |
| Neutral | (For 2P models) Connects to neutral | Screw terminal (optional) |
While MCBs are not directly controlled by microcontrollers like Arduino, they can be used to protect circuits powered by an Arduino. Below is an example of how to integrate an MCB into a simple Arduino-controlled lighting circuit:
/*
Example: Arduino-controlled lighting circuit with MCB protection.
- The MCB protects the circuit from overload or short circuit.
- The Arduino controls a relay to switch the light on/off.
*/
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 the light on
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the light on for 5 seconds
// Turn the light off
digitalWrite(relayPin, LOW);
delay(5000); // Keep the light off for 5 seconds
}
Note: The MCB is installed between the power source and the relay module to protect the entire circuit.
MCB Trips Frequently:
MCB Does Not Trip During Overload:
Loose Connections:
MCB Lever Stuck in "OFF" Position:
Q: Can I use a blue MCB for any circuit?
Q: How do I know if my MCB is faulty?
Q: Can I reset the MCB after it trips?
Q: Is it safe to install an MCB myself?