• OpenMV VSCode 扩展发布了,在插件市场直接搜索OpenMV就可以安装
  • 如果有产品硬件故障问题,比如无法开机,论坛很难解决。可以直接找售后维修
  • 发帖子之前,请确认看过所有的视频教程,https://singtown.com/learn/ 和所有的上手教程http://book.openmv.cc/
  • 每一个新的提问,单独发一个新帖子
  • 帖子需要目的,你要做什么?
  • 如果涉及代码,需要报错提示全部代码文本,请注意不要贴代码图片
  • 必看:玩转星瞳论坛了解一下图片上传,代码格式等问题。
  • LED4(红外灯)如何设置为PWM调光?



    • Note: Only LED(3) and LED(4) can have a smoothly varying intensity, and
      they use timer PWM to implement it. LED(3) uses Timer(2) and LED(4) uses
      Timer(3). These timers are only configured for PWM if the intensity of the
      relevant LED is set to a value between 1 and 254. Otherwise the timers are
      free for general purpose use.
      *请注意:*只有发光二极管(3)和LED(4)可以具有平滑变化的强度,并且他们使用定时器PWM来实现它。LED(3)使用定时器(2)和LED(4)使用定时器(三)。这些定时器只配置为PWM,如果强度的相关LED被设置为1和254之间的值。否则计时器免费用于一般用途。

      上述材料从openmv的GitHub上所得,LED4是可以使用定时器3来实现PWM调光,但是不知道LED4的引脚,如何设置LED4使用定时器3来实现pwm调光?



    • import time
      from pyb import LED
      
      ir_led    = LED(4)
      while(True):
          ir_led.intensity(0)
          time.sleep_ms(500)
          ir_led.intensity(128)
          time.sleep_ms(500)
          ir_led.intensity(255)
          time.sleep_ms(500)