Protect Your CIRCUITS: Building a Simple Electronic Circuit Breaker with High/Low Voltage Protection
Introduction
In the realm of electronics, circuit protection is a crucial aspect of designing and building reliable systems. A circuit breaker, in particular, is an essential component that detects and interrupts the flow of electrical current in the event of an overload, short-circuit, or ground fault. In this article, we’ll delve into the world of circuit protection and create a simple electronic circuit breaker with both high and low voltage protection using readily available components.
Theory of Operation
A circuit breaker works by monitoring the current flowing through a circuit and tripping when it exceeds a predetermined threshold (setpoint). The setpoint is usually defined by the circuit’s intended operating range, taking into account factors such as the rated current, voltage, and fault current.
Our circuit breaker will employ a simple, yet effective, design using a combination of voltage regulators, resistors, and comparators. The core idea is to create a comparator circuit that monitors the input voltage and current, and trips the output when the setpoint is exceeded.
Circuit Components
The following components are necessary to build our simple electronic circuit breaker:
- MCU (Microcontroller Unit): In this case, we’ll use a minimalistic microcontroller like the ATmega08.
- Comparator IC: A high-speed comparator like the LM324 will be used to monitor the input voltage and current.
- Voltage Regulators: We’ll employ two separate regulators, LM7805 (5V) and LM78L05 (12V), to generate the necessary output voltages.
- Resistors and Capacitors: These will be used to create the necessary current-sensing circuitry and filtering.
- LED Indicators: A set of status LEDs (red, yellow, and green) will be used to indicate the breaker’s state.
Circuit Design
The circuit is divided into three main sections: the input stage, the monitoring stage, and the output stage.
Input Stage: The input stage connects the incoming AC power to the circuit breaker.
Monitoring Stage: This stage consists of the current-sensing circuit, which uses a sense resistor (R1) in series with the load. The output voltage (Vout) is monitored by the comparator to detect overcurrent conditions.
Output Stage: This stage controls the output based on the comparator’s output. When the input voltage is within the acceptable range, the output is driven low (0V). When the input voltage exceeds the setpoint, the output is driven high (12V), disconnecting the load from the main power supply.
Circuit Diagram
Here’s a simplified circuit diagram (NCHEjecuity is not recommended) to help illustrate the design:
+---------------+
| 12V |
| (Output Stage) |
+---------------+
|
|
v
+---------------+
| Compara- |
| tor (LM324) |
| (Monitoring |
| Stage) |
+---------------+
|
|
v
+---------------+
| R1 (10kΩ) |
| (Sense Resistor)|
| (Input Stage |
| Stage) |
+---------------+
|
|
v
+---------------+
| MCU (ATmega08) |
| (Control Unit) |
+---------------+
|
|
v
+---------------+
| 5V |
| (Voltage Regulator)|
+---------------+
|
|
v
+---------------+
| GND |
| (Ground Plane)|
+---------------+Programming the MCU
To program the MCU, we’ll need to write a simple Arduino sketch using C++. The code conceptually implements the same logic as the analog circuit, with the minor difference being the digital nature of the MCU.
Conclusion
In this article, we created a basic electronic circuit breaker with high and low voltage protection using commercially available components and a simple microcontroller. While this design is rudimentary, it demonstrates the fundamental principles of circuit protection and can be extended to more advanced designs with internal voltage regulators, overtemperature sensing, and alarm indicators.
Future Improvements
Some future enhancements to consider:
- Add overtemperature protection using a thermistor.
- Integrate a watchdog timer to reset the circuit in case of malfunction.
- Implement more advanced fault detection using more sophisticated algorithms or dedicated ICs.
- Consider using a compact, integrated microcontroller with built-in voltage regulators and comparator functions.
Appendix
A comprehensive guide to reading and working with electronics DIY kits, including basic circuit analysis, soldering, and safety precautions, can be found on [Appendix Page]


















