例程讲解19-Low-Power->sensor_sleep感光元件休眠
# 感光元件休眠例程
# 这个例子演示了传感器的睡眠模式。休眠模式在启用时节省约40mA电流,并在调用sensor.reset() 时自动清除。
import sensor, image, time
sensor.reset() # 重置并初始化传感器。
sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE)
sensor.set_framesize(sensor.QVGA) # Set frame size to QVGA (320x240)
sensor.skip_frames(time = 3000) # Capture frames for 3000ms.
sensor.sleep(True) # 启用传感器睡眠模式(节省约40mA)。