Update examples.

This commit is contained in:
iabdalkader 2021-02-22 00:01:21 +02:00
parent 386baa3635
commit 9c264ef6db

View File

@ -6,8 +6,12 @@ from pyb import Pin, ExtInt
sensor.reset()
sensor.set_pixformat(sensor.GRAYSCALE)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time=2000)
# The sensor is less noisy are lower FPS.
sensor.set_framerate(15)
# Configure and enable motion detection
sensor.ioctl(sensor.IOCTL_HIMAX_MD_THRESHOLD, 0x01)
sensor.ioctl(sensor.IOCTL_HIMAX_MD_WINDOW, (0, 0, 320, 240))
sensor.ioctl(sensor.IOCTL_HIMAX_MD_CLEAR)
@ -19,6 +23,7 @@ def on_motion(line):
motion_detected = True
led = pyb.LED(3)
# Configure external interrupt pin. When motion is detected, this pin is pulled high
ext = ExtInt(Pin("PC15"), ExtInt.IRQ_RISING, Pin.PULL_DOWN, on_motion)
clock = time.clock()