Update deepsleep example.

This commit is contained in:
iabdalkader 2020-08-23 18:56:11 +02:00
parent 11792fb763
commit 91dac4c7d5

View File

@ -14,15 +14,16 @@ rtc.datetime((2014, 5, 1, 4, 13, 0, 0, 0))
print(rtc.datetime()) print(rtc.datetime())
sensor.reset() sensor.reset()
# Enable sensor softsleep
sensor.sleep(True)
# Optionally bypass the regulator on OV7725 # Optionally bypass the regulator on OV7725
# for the lowest possible power consumption. # for the lowest possible power consumption.
if (sensor.get_id() == sensor.OV7725): if (sensor.get_id() == sensor.OV7725):
# Bypass internal regulator # Bypass internal regulator
sensor.__write_reg(0x4F, 0x18) sensor.__write_reg(0x4F, 0x18)
# Enable sensor softsleep
sensor.sleep(True)
# Shutdown the sensor (pulls PWDN high). # Shutdown the sensor (pulls PWDN high).
sensor.shutdown(True) sensor.shutdown(True)