I have a microcontroller that needs to be powered ON only when there is light in the ambient, otherwise it should stay OFF. To achieve this I use the power latch described here and a simple light sensor formed by a 2N7000 N-channel MOSFET, a 5mm flat top green LED and a 10kOhm resistor as shown in the figure below. Everything is powered by a 3.7V LiPo battery. When there is no lo light, the output voltage of the sensor "Vout" is low and the power latch doesn´t provide power to the MCU. When there is enough light, Vout goes high and the power latch turns ON the MCU. I have implemented the circuit and it works, however there is definitively room for improvement. I write my questions below:
- When there is no light, I get a Vout of 0.9V which means a constant current draw of 90uA through the 10kOhm resistor. I would like to reduce this current to less than 10uA to increase the battery duration. Should I replace the MOSFET with something else? Or is it mainly due to the green LED leakage current?
- Do you have a better light sensor to propose that can be powered with 3.7V and consume 10uA or less when light is OFF?
simulate this circuit – Schematic created using CircuitLab
EDIT: Adding the power latch schematic since it is an important information. The output of my light sensor is connected to the "triggerOut" pin of the power latch.