Open bnorth12 opened 6 years ago
Did you check if lightMeter.configure actually send it to sleep? should be around 15 uA not 150mA while sleeping. I could not replicate 15uA with the new lib though.
lightMeter.begin(BH1750::ONE_TIME_LOW_RES_MODE); does the job. I have committed changes
The library for the BH1750 has been updated. Rather than calling the method write8 to change the light meter state.
lightMeter.write8(BH1750_POWER_DOWN);
You should now call the configure method.
lightMeter.configure(BH1750_POWER_DOWN);