

The Leitungsschutzschalter 1 pol. (Hager MBS 116 B16) is a single-pole circuit breaker designed to protect electrical circuits from overloads and short circuits. Manufactured by Hager, this component ensures the safety and reliability of electrical systems by automatically interrupting the current flow when abnormal conditions are detected. It is widely used in residential, commercial, and industrial electrical installations.








Below are the key technical details of the Hager MBS 116 B16 circuit breaker:
| Parameter | Value |
|---|---|
| Manufacturer | Hager |
| Part Number | MBS 116 B16 |
| Type | Single-pole circuit breaker |
| Rated Current (In) | 16A |
| Tripping Curve | B (suitable for low inrush currents) |
| Rated Voltage (Un) | 230/400V AC |
| Breaking Capacity (Icn) | 6 kA |
| Frequency | 50/60 Hz |
| Mounting Type | DIN rail (35mm) |
| Number of Poles | 1 |
| Operating Temperature | -25°C to +55°C |
| Standards Compliance | IEC/EN 60898-1 |
The Hager MBS 116 B16 has a simple terminal configuration for input and output connections:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the incoming power supply. |
| Load (Output) | Connects to the protected circuit/load. |
Mounting the Circuit Breaker:
Wiring:
Operation:
Resetting After a Trip:
While the Hager MBS 116 B16 is not directly compatible with Arduino, it can be used in conjunction with an Arduino-based monitoring system. For example, you can use a current sensor (e.g., ACS712) to monitor the load current and trigger an alert if the breaker trips.
Here is an example Arduino code snippet for monitoring current:
// Include necessary libraries
#include <Wire.h>
// Define the analog pin connected to the current sensor
const int currentSensorPin = A0;
// Define the threshold current in amperes
const float currentThreshold = 16.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 (example conversion factor)
float current = sensorValue * (5.0 / 1023.0) * 30.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: Current exceeds threshold! Check the circuit.");
}
delay(1000); // Wait for 1 second before the next reading
}
Note: The above code assumes the use of an ACS712 current sensor. Adjust the conversion factor based on your specific sensor model.
Breaker Trips Frequently:
Breaker Does Not Trip During Overload:
Difficulty in Resetting the Breaker:
Loose Connections:
By following this documentation, users can effectively install, operate, and troubleshoot the Hager MBS 116 B16 circuit breaker, ensuring the safety and reliability of their electrical systems.