Electronic – arduino – solar power ESP8266 microprocessor circuit to turn off when low voltage

arduinoesp8266microprocessorpowersolar cell

I intend to run an esp8266 microprocessor on only solar panels so it is on during the day and off/disabled during low light conditions that do not supply sufficient power.

Is there a circuit that will hold the esp8266 reset low until voltage is sufficient (>3v) to power the esp8266? Hysteresis would be beneficial.

Best Answer

schematic

simulate this circuit – Schematic created using CircuitLab

Figure 1. Voltage detection circuit.

I suggest that you need a circuit to hold the reset pin on your micro until solar output is high enough to reliably power the circuit. Figure 1 uses a comparitor to do this function. When the supply voltage divider, R3 - R4, exceeds the R1 - R2 setpoint the micro will be enabled. (You need to figure out setpoints and whether to invert the logic or not.)

Note that you may need to add some hysteresis to this to prevent rapid cycling as you load / unload the solar cell.

Related Topic