mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Update examples.
This commit is contained in:
parent
386baa3635
commit
9c264ef6db
@ -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()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user