

The Tomzn DC Miniature Circuit Breaker (MCB) 250A is a high-performance protective device designed for use in direct current (DC) electrical systems. It is rated for a maximum current of 250 Amperes and is engineered to safeguard circuits from overloads and short circuits. This compact and reliable component is ideal for applications requiring robust circuit protection in renewable energy systems, industrial equipment, and battery-based setups.








The following table outlines the key technical details of the Tomzn DC MCB 250A:
| Parameter | Specification |
|---|---|
| Rated Current (In) | 250 Amperes |
| Rated Voltage (Ue) | 250V DC |
| Breaking Capacity (Icu) | 10 kA |
| Number of Poles | 2P (Double Pole) |
| Tripping Curve | C Curve |
| Operating Temperature | -25°C to +70°C |
| Mounting Type | DIN Rail (Standard 35mm) |
| Dimensions | 81mm x 36mm x 75mm |
| Housing Material | Flame-retardant thermoplastic |
| Compliance Standards | IEC/EN 60947-2, IEC/EN 60898-2 |
The Tomzn DC MCB 250A features a simple terminal configuration for input and output connections. The table below describes the terminals:
| Terminal | Description |
|---|---|
| Line In (+) | Positive DC input terminal |
| Line In (-) | Negative DC input terminal |
| Line Out (+) | Positive DC output terminal |
| Line Out (-) | Negative DC output terminal |
While the Tomzn DC MCB 250A is not directly interfaced with microcontrollers like the Arduino UNO, it can be used in circuits controlled by Arduino. For example, you can use the MCB to protect a DC motor or power supply in an Arduino-based project.
Here is an example of Arduino code to monitor the voltage across the MCB using a voltage sensor:
// Example code to monitor voltage across the DC MCB using an Arduino
// and a voltage sensor module (e.g., 0-25V sensor).
const int voltagePin = A0; // Analog pin connected to the voltage sensor
float voltage = 0.0; // Variable to store the measured voltage
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(voltagePin, INPUT); // Set the voltage pin as input
}
void loop() {
int sensorValue = analogRead(voltagePin); // Read the analog value
voltage = (sensorValue / 1023.0) * 25.0; // Convert to voltage (0-25V range)
// Print the voltage to the Serial Monitor
Serial.print("Voltage across MCB: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Note: This code assumes the use of a voltage sensor module with a 0-25V range. Ensure the voltage across the MCB does not exceed the sensor's maximum input voltage.
MCB Trips Frequently:
MCB Does Not Trip During a Fault:
Loose Connections:
Arcing or Overheating:
By following this documentation, users can effectively integrate and maintain the Tomzn DC MCB 250A in their DC electrical systems, ensuring reliable circuit protection and optimal performance.