The AC Miniature Circuit Breaker (MCB) is a compact, electromechanical device designed to protect electrical circuits from overloads and short circuits. This specific model features a distinctive blue casing, making it easily identifiable in electrical panels. It is widely used in residential, commercial, and industrial applications to ensure the safety and reliability of electrical systems.
The AC MCB does not have traditional "pins" like an IC but instead features terminal connections for input and output wiring. Below is a description of the terminals:
Terminal Name | Description | Connection Type |
---|---|---|
Line (L) In | Input terminal for live wire | Screw terminal |
Line (L) Out | Output terminal for live wire | Screw terminal |
Neutral (N) In | Input terminal for neutral wire (optional, for 2P+) | Screw terminal |
Neutral (N) Out | Output terminal for neutral wire (optional, for 2P+) | Screw terminal |
Note: For single-pole (1P) MCBs, only the Line (L) terminals are used. For multi-pole (2P, 3P, 4P) MCBs, both Line and Neutral terminals are available.
While MCBs are not directly connected to 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
// Note: The MCB is used to protect the AC side of the circuit.
// Ensure proper isolation between AC and DC components.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as output for controlling a relay
}
void loop() {
digitalWrite(13, HIGH); // Turn on the relay (activates AC load)
delay(5000); // Keep the load on for 5 seconds
digitalWrite(13, LOW); // Turn off the relay
delay(5000); // Wait for 5 seconds before repeating
}
// Important: Use an optocoupler or relay module to safely interface
// the Arduino with the AC circuit. The MCB should be installed on
// the live wire to protect the AC load from overload or short circuits.
MCB Trips Frequently:
MCB Does Not Trip During a Fault:
Loose Connections:
Overheating of MCB:
By following this documentation, users can effectively utilize the AC MCB (Blue) to protect their electrical systems and ensure safe operation.