导航

    • 登录
    • 搜索
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. 主页
    2. ldgw
    L
    • 举报资料
    • 资料
    • 关注
    • 粉丝
    • 屏蔽
    • 帖子
    • 楼层
    • 最佳
    • 群组

    ldgw

    @ldgw

    0
    声望
    4
    楼层
    692
    资料浏览
    0
    粉丝
    0
    关注
    注册时间 最后登录

    ldgw 关注

    ldgw 发布的帖子

    • RE: 关于引脚

      @15009206548 怎么加的发个示例看看谢谢大神们

      发布在 OpenMV Cam
      L
      ldgw
    • 系统报错大师指点怎么处理?

      0_1554801749788_2a8ce14e75fccb30b0401cb9c829ab4.jpg0_1554802128599_dd1f5a4d9cfe9a69c57d28eba79ec0d.jpg 0_1554802172327_d5147ccc1fba8badc7df2b0fa864de0.jpg 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)
      ain2 = Pin('P1', Pin.OUT_PP)
      bin1 = Pin('P2', Pin.OUT_PP)
      bin2 = Pin('P3', Pin.OUT_PP)
      ain1.low()
      ain2.low()
      bin1.low()
      bin2.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()
          ain2.high()
      else:
          ain1.high()
          ain2.low()
      ch1.pulse_width_percent(abs(left_speed))
      

      😇

      import car
      
      while True:
          car.run(100,100)
      
      
      请在这里粘贴代码
      
      发布在 OpenMV Cam
      L
      ldgw
    • lmportError:no module named 'pid'怎么了?

      0_1554717424725_微信图片_20190408175149.jpg

      发布在 OpenMV Cam
      L
      ldgw
    • 如何实现开关量控制颜色识别请大师给个示例谢谢

      开关量控制颜色识别

      发布在 OpenMV Cam
      L
      ldgw