

A thermal-magnetic circuit breaker is a protective device designed to safeguard electrical circuits by automatically interrupting the flow of current when it detects an overload or short circuit. This dual-function breaker combines thermal protection (for prolonged overloads) and magnetic protection (for instantaneous short circuits). The 2A rating indicates that the breaker can handle a maximum current of 2 amperes, while the '2P' designation signifies that it has two poles, enabling it to disconnect both the live and neutral wires in a circuit.








| Parameter | Specification |
|---|---|
| Rated Current (In) | 2A |
| Number of Poles (2P) | 2 (disconnects live and neutral) |
| Rated Voltage (Un) | 230/400V AC |
| Breaking Capacity (Icu) | 6 kA |
| Trip Mechanism | Thermal (overload) and Magnetic (short circuit) |
| Operating Temperature Range | -5°C to +40°C |
| Mounting Type | DIN Rail |
| Standards Compliance | IEC 60898-1 |
| Pin/Terminal | Description |
|---|---|
| Terminal 1 | Input for live wire (Phase 1) |
| Terminal 2 | Input for neutral wire (Phase 2) |
| Terminal 3 | Output for live wire (Phase 1) |
| Terminal 4 | Output for neutral wire (Phase 2) |
While thermal-magnetic circuit breakers are not directly interfaced with microcontrollers like the Arduino UNO, they can be used in circuits controlled by Arduino to protect connected devices. For example, you can use the breaker to safeguard a motor controlled by an Arduino.
Here is an example Arduino code to control a motor, with the breaker protecting the circuit:
// Example: Controlling a motor with Arduino UNO
// Ensure the thermal-magnetic circuit breaker is installed to protect the circuit.
const int motorPin = 9; // Pin connected to motor driver input
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
digitalWrite(motorPin, HIGH); // Turn motor ON
delay(5000); // Run motor for 5 seconds
digitalWrite(motorPin, LOW); // Turn motor OFF
delay(5000); // Wait for 5 seconds before restarting
}
Note: The breaker will trip if the motor draws more than 2A, protecting the circuit from damage.
Breaker Trips Frequently:
Breaker Does Not Trip During Fault:
Difficulty Resetting the Breaker:
Overheating of Terminals:
By following this documentation, you can effectively use the thermal-magnetic circuit breaker 2A 2P to protect your electrical circuits and ensure safe operation.