









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 |
|---|---|
| Line (L) | Input terminal for the live wire (phase). Connects to the power source. |
| Load (L) | Output terminal for the live wire. Connects to the circuit or load. |
| Neutral (N)* | Some models include a neutral terminal for double-pole MCBs. |
* Note: Single-pole MCBs do not have a neutral terminal.
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 AC MCB protection.
Note: The MCB is used to protect the AC side of the circuit.
WARNING: Working with AC voltage is dangerous. Ensure proper insulation and
safety precautions. Consult a licensed electrician if unsure.
*/
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Example: Turn on the relay for 5 seconds, then turn it off
digitalWrite(relayPin, HIGH); // Turn on the relay (light ON)
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (light OFF)
delay(5000); // Wait for 5 seconds
}
MCB Trips Frequently:
MCB Does Not Trip During Overload:
Loose Connections:
MCB Feels Hot:
Q: Can I use a blue MCB for any circuit?
A: No, the blue color typically indicates a specific current rating (e.g., 16A). Ensure the MCB's rating matches your circuit's requirements.
Q: How do I know if my MCB is faulty?
A: If the MCB does not trip during an overload or short circuit, or if it trips without any apparent cause, it may be faulty and should be replaced.
Q: Can I reset an MCB after it trips?
A: Yes, after identifying and resolving the cause of the trip, you can reset the MCB by flipping the switch back to the "ON" position.
Q: Is it safe to install an MCB myself?
A: Working with electrical systems can be dangerous. If you are not experienced, consult a licensed electrician for installation.