

The 2P Breaker (Schneider MCB F1-2 Motor) is a 2-pole miniature circuit breaker designed to protect electrical circuits from overloads and short circuits. It ensures the safe interruption of current flow in dual-phase systems, making it an essential component for safeguarding electrical installations. Manufactured by Schneider, this breaker is known for its reliability, durability, and compliance with international safety standards.








Below are the key technical details of the Schneider MCB F1-2 Motor:
| Parameter | Value |
|---|---|
| Manufacturer | Schneider |
| Part ID | MCB F1-2 Motor |
| Number of Poles | 2 |
| Rated Voltage | 240/415V AC |
| Rated Current | 1A to 63A (varies by model) |
| Breaking Capacity | 10 kA |
| Tripping Curve | B, C, or D (depending on model) |
| Frequency | 50/60 Hz |
| Mounting Type | DIN Rail |
| Operating Temperature | -25°C to +70°C |
| Standards Compliance | IEC 60898-1, IEC 60947-2 |
The 2P Breaker has two input terminals and two output terminals. Below is the pin configuration:
| Pin | Description |
|---|---|
| L1 IN | Line 1 input (phase 1) |
| L2 IN | Line 2 input (phase 2) |
| L1 OUT | Line 1 output (phase 1) |
| L2 OUT | Line 2 output (phase 2) |
While the 2P Breaker is not directly connected to an Arduino, it can be used in circuits where the Arduino controls devices powered through the breaker. For example, an Arduino can control a relay that switches a motor protected by the breaker.
Here is an example Arduino code for controlling a motor via a relay:
// Example: Controlling a motor with a relay and protecting it with a 2P breaker
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: Ensure the motor is connected to the breaker-protected circuit, and the relay is rated for the motor's current.
Breaker Trips Frequently:
Breaker Does Not Trip During Overload:
Loose Connections:
Breaker Does Not Reset:
By following this documentation, users can effectively install, use, and troubleshoot the Schneider MCB F1-2 Motor 2P Breaker in their electrical systems.