1
13531193294 发布的帖子
-
关于串口中断的问题,
之前搜论坛说,串口已经加入中断,但是平时要用还是while轮询中,这不是我想要的效果,能否像其他单片机一样把中断函数写在外面,一但串口有信息立刻发生中断,然后处理我想要的数据
-
瞳孔识别不准确问题
官方历程中有个瞳孔识别的历程,但是那个历程是识别最最黑的地方来确定瞳孔位置,而正常情况下眼睛都会有反光,这样的话干扰会很大,有什么好的解决方法或者另外的例子呢
-
请问电机保存库函数的问题
你好小助手,因为官网的电机驱动库函数是有四个电平口,但是普通电机驱动板不需要那么多电平端所以我改了库函数,但是发现不能驱动,小助手你看看这个库函数改的有问题吗
from pyb import Pin, Timer inverse_left=False #change it to True to inverse left wheel inverse_right=False #change it to True to inverse right wheel ain1 = Pin('P0', Pin.OUT_PP) bin1 = Pin('P2', Pin.OUT_PP) ain1.low() bin1.low() pwma = Pin('P7') pwmb = Pin('P8') tim = Timer(4, freq=1000) ch1 = tim.channel(1, Timer.PWM, pin=pwma) ch2 = tim.channel(2, Timer.PWM, pin=pwmb) ch1.pulse_width_percent(0) ch2.pulse_width_percent(0) def run(left_speed, right_speed): if inverse_left==True: left_speed=(-left_speed) if inverse_right==True: right_speed=(-right_speed) if left_speed < 0: ain1.low() else: ain1.high() ch1.pulse_width_percent(abs(left_speed)) if right_speed < 0: bin1.low() else: bin1.high() ch2.pulse_width_percent(abs(right_speed))
-
openmv电机控制
你好小助手,按照教程里的car.py保存openmv后直接调用库,写car.run(100 100),这个函数可以控制电机方向和电机速度吗,最高电机速度是哪个值,如果不能库函数那里要怎么改