









The MCCB does not have traditional "pins" like an IC but instead features terminals for electrical connections. Below is a table describing the terminals:
| Terminal Name | Description |
|---|---|
| Line Input | Connects to the positive or negative terminal of the DC power source. |
| Load Output | Connects to the load (e.g., motor, battery, or other equipment). |
| Auxiliary Contacts (optional) | Used for signaling or remote monitoring of breaker status. |
Installation:
Wiring:
Operation:
Important Considerations:
Arduino Integration (Optional Monitoring):
// Example: Monitor MCCB status using auxiliary contacts and Arduino UNO
const int auxContactPin = 2; // Connect auxiliary contact to digital pin 2
const int ledPin = 13; // Built-in LED for status indication
void setup() {
pinMode(auxContactPin, INPUT_PULLUP); // Configure pin as input with pull-up resistor
pinMode(ledPin, OUTPUT); // Configure LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int auxStatus = digitalRead(auxContactPin); // Read auxiliary contact status
if (auxStatus == HIGH) {
// MCCB is in the "ON" position
digitalWrite(ledPin, HIGH); // Turn on LED
Serial.println("MCCB is ON");
} else {
// MCCB is in the "OFF" or tripped position
digitalWrite(ledPin, LOW); // Turn off LED
Serial.println("MCCB is OFF or Tripped");
}
delay(500); // Delay for stability
}
MCCB Trips Frequently:
MCCB Does Not Trip During a Fault:
Overheating of MCCB:
Auxiliary Contacts Not Working:
Q: Can an MCCB be used for AC circuits?
A: No, DC MCCBs are specifically designed for direct current. Use an AC-rated MCCB for alternating current applications.
Q: How do I select the right MCCB for my circuit?
A: Consider the circuit's voltage, current, and breaking capacity requirements. Choose an MCCB with ratings that meet or exceed these values.
Q: Can I reset the MCCB remotely?
A: Some MCCBs support remote operation via motorized mechanisms or auxiliary contacts. Check the manufacturer's specifications for this feature.
Q: How often should I inspect the MCCB?
A: Perform routine inspections every 6-12 months or as recommended by the manufacturer.