欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

学习日志2

程序员文章站 2023-08-24 19:47:42
#认识并学会读这些代码import sensor, image, timefrom pid import PIDfrom pyb import Servopan_servo=Servo(1)tilt_servo=Servo(2)red_threshold = (13, 49, 18, 61, 6, 47)pan_pid = PID(p=0.07, i=0, imax=90) #脱机运行或者禁用图像传输,使用这个PIDtilt_pid = PID(p=0.05, i=0, imax=...
#认识并学会读这些代码
import sensor, image, time

from pid import PID
from pyb import Servo

pan_servo=Servo(1)
tilt_servo=Servo(2)

red_threshold  = (13, 49, 18, 61, 6, 47)

pan_pid = PID(p=0.07, i=0, imax=90) #脱机运行或者禁用图像传输,使用这个PID
tilt_pid = PID(p=0.05, i=0, imax=90) #脱机运行或者禁用图像传输,使用这个PID
#pan_pid = PID(p=0.1, i=0, imax=90)#在线调试使用这个PID
#tilt_pid = PID(p=0.1, i=0, imax=90)#在线调试使用这个PID

如何使用OPENMV
舵机:https://book.openmv.cc/example/02-Board-Control/servo-control.html

电机:https://book.openmv.cc/MCU/motor.html

本文地址:https://blog.csdn.net/weixin_49561865/article/details/107572938