IO口通信和延时函数,小白求教前辈
-
请在这里粘贴代码 import time, sensor, image, pyb, utime from image import SEARCH_EX, SEARCH_DS from pyb import Pin p_out = Pin('P7', Pin.OUT_PP) p_out.high() sensor.reset() sensor.set_contrast(1) sensor.set_gainceiling(16) sensor.set_framesize(sensor.QQVGA) sensor.set_pixformat(sensor.GRAYSCALE) template = image.Image("/template.pgm") clock = time.clock() while (True): clock.tick() img = sensor.snapshot() r = img.find_template(template, 0.70, step=4, search=SEARCH_EX) #, roi=(10, 0, 60, 60)) if r: img.draw_rectangle(r) p_out.low() time.sleep(5) print(clock.fps()) ```我想让openmv在检测到模板图片时通过P7引脚发送一个低电平信号,并延时5秒,保持低电平。小白求教师兄代码中的错误。
-
哪里有错误?请发错误的提示,和错误的现象。
-
问题是P7口输出的电平一直在变化,即使检测到图案。大佬这是为什么?
-
time.sleep(5)是延时5毫秒