

The Thermal-Magnetic Circuit Breaker 2A 2P is a protective device designed to safeguard electrical circuits by automatically interrupting the flow of current during overloads or short circuits. This component combines two protection mechanisms: thermal protection for prolonged overloads and magnetic protection for instantaneous short circuits. Rated for 2 Amperes and featuring a 2-pole design, it is ideal for low-current applications requiring reliable circuit protection.








| Parameter | Value |
|---|---|
| Rated Current | 2 Amperes |
| Number of Poles | 2 |
| Voltage Rating | 240V AC / 48V DC |
| Breaking Capacity | 6 kA (AC) / 10 kA (DC) |
| Trip Mechanism | Thermal (overload) + Magnetic (short circuit) |
| Operating Temperature Range | -20°C to +60°C |
| Mounting Type | DIN Rail (35mm) |
| Terminal Type | Screw terminals |
| Dimensions (L x W x H) | 90mm x 36mm x 70mm |
| Compliance Standards | IEC 60898-1, UL 1077 |
The thermal-magnetic circuit breaker does not have traditional "pins" like an IC but instead features screw terminals for electrical connections. Below is the terminal configuration:
| Terminal Number | Description |
|---|---|
| 1 | Line input for Pole 1 |
| 2 | Load output for Pole 1 |
| 3 | Line input for Pole 2 |
| 4 | Load output for Pole 2 |
Mounting the Circuit Breaker:
Wiring:
Operation:
Resetting After a Trip:
While the thermal-magnetic circuit breaker is not directly interfaced with microcontrollers like the Arduino UNO, it can be used to protect circuits powered by the Arduino. Below is an example of how to integrate the breaker into a simple Arduino-powered circuit:
// Example: Using a thermal-magnetic circuit breaker to protect an Arduino circuit
// This setup assumes the breaker is installed between the power supply and the Arduino.
void setup() {
// Initialize the Arduino
pinMode(LED_BUILTIN, OUTPUT); // Set built-in LED as output
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // Turn on the LED
delay(1000); // Wait for 1 second
digitalWrite(LED_BUILTIN, LOW); // Turn off the LED
delay(1000); // Wait for 1 second
}
// Note: The circuit breaker will trip if the current exceeds 2A, protecting the Arduino
// and connected components from damage due to overload or short circuits.
Breaker Trips Frequently:
Breaker Does Not Reset:
Loose Connections:
Breaker Does Not Trip During a Fault:
By following this documentation, users can effectively integrate and maintain the Thermal-Magnetic Circuit Breaker 2A 2P in their electrical systems, ensuring reliable circuit protection and safe operation.