









The DC MCB 10A typically has screw terminals for input and output connections. Below is a table describing the terminal configuration:
| Terminal Label | Description | Notes |
|---|---|---|
| L+ | Positive DC input terminal | Connect to the positive side of the DC power source. |
| L- | Negative DC input terminal | Connect to the negative side of the DC power source. |
| OUT+ | Positive DC output terminal | Connect to the positive side of the load. |
| OUT- | Negative DC output terminal | Connect to the negative side of the load. |
Note: For single-pole MCBs, only the positive terminals (L+ and OUT+) are used, while the negative side is directly connected.
Installation:
Operation:
Important Considerations:
Example Application with Arduino UNO: While the DC MCB 10A is not directly interfaced with microcontrollers like the Arduino UNO, it can be used to protect circuits powered by DC sources connected to the Arduino. For example, in a solar-powered Arduino project, the MCB can safeguard the power supply line.
// Example: Arduino code to monitor a DC circuit's current
// This code assumes a current sensor (e.g., ACS712) is used to measure current.
// The MCB protects the circuit from overloads or short circuits.
const int currentSensorPin = A0; // Analog pin connected to the current sensor
float sensitivity = 0.185; // Sensitivity of ACS712 (e.g., 185mV/A for 5A model)
float offsetVoltage = 2.5; // Sensor output at 0A (typically 2.5V for ACS712)
float current; // Variable to store measured current
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(currentSensorPin); // Read sensor value
float voltage = (sensorValue / 1023.0) * 5.0; // Convert to voltage (5V reference)
current = (voltage - offsetVoltage) / sensitivity; // Calculate current in Amperes
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait 1 second before next reading
}
Note: The MCB in this example is used to protect the DC power source and load. The Arduino monitors the current for additional diagnostics.
MCB Trips Frequently:
MCB Does Not Trip During Overload:
MCB Fails to Reset:
Q: Can the DC MCB 10A be used in AC circuits?
A: No, this MCB is specifically designed for DC applications. Using it in AC circuits may result in improper operation or damage.
Q: How do I select the correct MCB for my circuit?
A: Ensure the MCB's rated current matches the maximum load current of your circuit. Also, consider the trip curve and breaking capacity based on your application.
Q: Can I use a single-pole MCB for a two-wire DC system?
A: Yes, but only the positive line will be protected. For full protection, use a double-pole MCB.
Q: What happens if the MCB is exposed to high temperatures?
A: High temperatures can affect the MCB's performance and may cause it to trip prematurely. Ensure proper ventilation and avoid installing the MCB near heat sources.
This concludes the documentation for the DC MCB 10A. Always follow safety guidelines and consult the manufacturer's datasheet for detailed specifications.