

The CHINT NB1-63DC is a DC Miniature Circuit Breaker (MCB) rated for 10 Amperes. It is specifically designed to protect electrical circuits from overloads and short circuits in direct current (DC) applications. This component ensures the safety and reliability of DC systems by interrupting the current flow when abnormal conditions are detected.








The following table outlines the key technical details of the CHINT NB1-63DC DC MCB:
| Parameter | Specification |
|---|---|
| Manufacturer | CHINT |
| Part ID | NB1-63DC |
| Rated Current | 10 A |
| Rated Voltage | 250 V DC (single pole) / 500 V DC (double pole) |
| Breaking Capacity | 6 kA |
| Number of Poles | 1P, 2P |
| Tripping Curve | C Curve |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN Rail (35 mm) |
| Standards Compliance | IEC/EN 60947-2, IEC/EN 60898-2 |
The CHINT NB1-63DC MCB does not have traditional "pins" but instead features terminal connections for input and output wiring. Below is a description of the terminals:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the positive terminal of the DC power source. |
| Load (Output) | Connects to the positive terminal of the load. |
| Neutral | Not applicable for single-pole configurations. |
Mounting the MCB:
Wiring the MCB:
Operation:
While the DC MCB is not directly interfaced with an Arduino UNO, it can be used in circuits powered by DC sources controlled by the Arduino. Below is an example of how the MCB might be integrated into a DC motor control circuit:
/*
Example: Controlling a DC motor with an Arduino UNO and protecting the circuit
using a CHINT NB1-63DC 10A MCB.
This code demonstrates basic motor control using a relay module.
The MCB is placed between the DC power source and the motor for protection.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Turn on the motor
digitalWrite(relayPin, HIGH); // Activate relay
delay(5000); // Run motor for 5 seconds
// Turn off the motor
digitalWrite(relayPin, LOW); // Deactivate relay
delay(5000); // Wait for 5 seconds before restarting
}
Note: The MCB is not directly controlled by the Arduino but is used to protect the circuit from overloads or short circuits.
MCB Trips Frequently:
MCB Does Not Trip During Faults:
Difficulty in Mounting the MCB:
MCB Overheats During Operation:
By following these guidelines, the CHINT NB1-63DC DC MCB can be effectively used to protect your DC circuits and ensure safe operation.