

The Interruptor Magneto Térmico, or thermal magnetic circuit breaker, is an essential safety device designed to protect electrical circuits from overloads and short circuits. It combines two mechanisms: a thermal element that responds to prolonged overcurrent conditions and a magnetic element that reacts to instantaneous high-current surges. This dual functionality ensures reliable protection for electrical systems in residential, commercial, and industrial applications.








| Parameter | Value/Range |
|---|---|
| Rated Voltage | 120V, 230V, or 400V (varies by model) |
| Rated Current | 1A to 125A |
| Breaking Capacity | 6kA to 25kA |
| Trip Curve Types | B, C, D (defines response to overload) |
| Operating Temperature Range | -25°C to +70°C |
| Mounting Type | DIN rail or panel-mounted |
| Standards Compliance | IEC 60898, IEC 60947-2 |
The Interruptor Magneto Térmico does not have traditional "pins" like an IC but instead features terminals for electrical connections. Below is a description of the terminal layout:
| Terminal Name | Description |
|---|---|
| Line (L) | Input terminal for the live wire (power source) |
| Neutral (N) | Input terminal for the neutral wire (if applicable) |
| Load (L) | Output terminal for the live wire to the load |
| Ground (G) | Optional terminal for grounding (varies by model) |
While the Interruptor Magneto Térmico is not directly interfaced with microcontrollers like the Arduino UNO, it can be used in circuits controlled by an Arduino. For example, you can use the breaker to protect a motor controlled by the Arduino. Below is a simple example of Arduino code to control a motor:
// Example: Controlling a motor with Arduino and protecting it with a circuit breaker
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: Ensure the circuit breaker is installed between the power source
// and the motor driver to protect the circuit from overloads or short circuits.
Breaker Trips Frequently:
Breaker Does Not Trip During Fault:
Overheating of Breaker:
Difficulty Resetting the Breaker: