









The MCB 10A does not have traditional pins like electronic components but instead features terminals for wiring. Below is a description of its terminals:
| Terminal Name | Description |
|---|---|
| Line (Input) | Connects to the incoming live wire from the power source. |
| Load (Output) | Connects to the outgoing live wire leading to the protected circuit/load. |
| Neutral (Optional, DP) | For double-pole MCBs, connects to the incoming and outgoing neutral wires. |
Installation:
Operation:
Important Considerations:
Arduino Integration (Optional Monitoring): While the MCB itself is not directly connected to an Arduino, you can monitor its status using a current sensor (e.g., ACS712) and an Arduino UNO. Below is an example code snippet for monitoring current:
/*
* Example code to monitor current using ACS712 sensor and Arduino UNO.
* This can help detect if the MCB trips by observing current flow.
*/
const int sensorPin = A0; // ACS712 sensor connected to analog pin A0
float sensitivity = 0.185; // Sensitivity for ACS712 5A module (in V/A)
float offsetVoltage = 2.5; // Offset voltage at 0A (in volts)
float current; // Variable to store calculated current
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read sensor value
float voltage = (sensorValue / 1023.0) * 5.0; // Convert to voltage
current = (voltage - offsetVoltage) / sensitivity; // Calculate current
// Print current to Serial Monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait for 1 second before next reading
}
MCB Trips Frequently:
MCB Does Not Trip During Fault:
MCB Feels Hot to the Touch:
Can I use the MCB 10A for DC circuits?
What is the difference between Type C and Type B MCBs?
How do I know if the MCB is faulty?
By following this documentation, users can safely and effectively use the MCB 10A to protect their electrical circuits.