

A Disjonteur 10A (10-amp circuit breaker) is an essential safety device used in electrical systems to protect circuits from damage caused by overcurrent, such as overloads or short circuits. When the current flowing through the circuit exceeds 10 amps, the breaker automatically interrupts the flow of electricity, preventing potential hazards like overheating, fires, or equipment damage.








The following table outlines the key technical details of the Disjonteur 10A:
| Parameter | Value |
|---|---|
| Rated Current | 10A |
| Rated Voltage | 230V AC / 48V DC |
| Breaking Capacity | 6kA (typical) |
| Trip Curve | Type B, C, or D (varies) |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN rail (standard) |
| Dimensions | 18mm width (single-pole) |
| Compliance Standards | IEC 60898-1, EN 60947-2 |
The Disjonteur 10A typically has two connection terminals:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the power source (live wire). |
| Load (Output) | Connects to the circuit or device being protected. |
Mounting the Circuit Breaker:
Wiring:
Operation:
Resetting the Breaker:
While circuit breakers are not directly interfaced with microcontrollers like Arduino, they can be used in conjunction with Arduino-based projects to protect circuits. For example, you can monitor the status of a circuit breaker using a current sensor and Arduino. Below is an example code snippet for monitoring current:
#include <Wire.h>
// Define the analog pin connected to the current sensor
const int currentSensorPin = A0;
// Define the threshold current in amps (adjust based on your sensor)
const float currentThreshold = 10.0;
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(currentSensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
// Read the analog value from the current sensor
int sensorValue = analogRead(currentSensorPin);
// Convert the sensor value to current (adjust the formula for your sensor)
float current = sensorValue * (5.0 / 1023.0) * 10.0;
// Print the current value to the serial monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
// Check if the current exceeds the threshold
if (current > currentThreshold) {
Serial.println("Warning: Overcurrent detected!");
// Add additional actions here, such as triggering an alert
}
delay(1000); // Wait for 1 second before the next reading
}
Breaker Trips Frequently:
Breaker Does Not Reset:
Loose Connections:
Breaker Overheats:
By following this documentation, you can safely and effectively use the Disjonteur 10A to protect your electrical circuits.