

The BLAGAIN 80A DC Circuit Breaker is a robust and reliable protection device designed for DC circuits. It is specifically engineered to safeguard systems from overloads and short circuits, ensuring the safety and longevity of connected components. This circuit breaker is rated for 80A and is particularly well-suited for use in solar power systems, where it is commonly installed between a Maximum Power Point Tracking (MPPT) charge controller and a battery.








The following table outlines the key technical details of the BLAGAIN 80A DC Circuit Breaker:
| Parameter | Specification |
|---|---|
| Rated Current | 80A |
| Rated Voltage | 12V-48V DC |
| Breaking Capacity | 10kA |
| Operating Temperature | -25°C to +70°C |
| Mounting Type | Surface or DIN rail |
| Dimensions | 98mm x 75mm x 45mm |
| Material | Flame-retardant thermoplastic |
| Compliance Standards | IEC 60947-2, RoHS compliant |
The BLAGAIN 80A DC Circuit Breaker does not have traditional pins but instead features screw terminals for secure connections. The terminal configuration is as follows:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the positive output of the MPPT charge controller. |
| Load (Output) | Connects to the positive terminal of the battery. |
| Ground | Optional grounding terminal for additional safety. |
While the BLAGAIN 80A DC Circuit Breaker is not directly connected to an Arduino, it can be used in systems where an Arduino monitors the solar power system. For example, you can use a current sensor to monitor the current flowing through the breaker. Below is an example Arduino code snippet for monitoring current using an ACS712 sensor:
// Include necessary libraries
const int sensorPin = A0; // Connect ACS712 output to Arduino A0
float sensitivity = 0.066; // Sensitivity for 30A ACS712 (66mV/A)
float offsetVoltage = 2.5; // Offset voltage at 0A (for 5V supply)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read sensor value
float voltage = (sensorValue / 1023.0) * 5.0; // Convert to voltage
float current = (voltage - offsetVoltage) / sensitivity; // Calculate current
// Print current to Serial Monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait 1 second before next reading
}
Note: Replace the sensitivity value with the appropriate value for your ACS712 model (e.g., 0.185 for 5A, 0.100 for 20A).
Breaker Trips Frequently:
Breaker Does Not Reset:
Loose Connections:
Overheating:
Q1: Can this circuit breaker be used for AC circuits?
A1: No, the BLAGAIN 80A DC Circuit Breaker is designed specifically for DC circuits and is not suitable for AC applications.
Q2: What happens if the breaker trips?
A2: The breaker will cut off the current flow to protect the circuit. You can reset it by flipping the switch back to the "ON" position after resolving the issue.
Q3: Is this breaker waterproof?
A3: No, the breaker is not waterproof. It should be installed in a dry, protected environment.
Q4: Can I use this breaker with a 24V battery system?
A4: Yes, the breaker is compatible with 12V-48V DC systems, including 24V setups.
Q5: How do I know if the breaker is faulty?
A5: If the breaker does not reset or trips without any load, it may be faulty and should be replaced.