我可以仅在一个引脚上使用 Arduino 16 位 PWM 吗?

发布于 2024-11-03 09:17:15 字数 150 浏览 6 评论 0原文

我有一个 Arduino Duemilanove,我想在其上使用内部 16 位定时器在引脚 9 上执行 PWM,不是 引脚 10(我的项目中有一个 Wifi 扩展板,需要使用引脚10)。

是否可以将定时器配置为在引脚 9 上发送信号但不触摸引脚 10?

I have an Arduino Duemilanove on which I would like to use the internal 16-bit timer to do PWM on pin 9 and not pin 10 (I have a Wifi shield in my project which requires the use of pin 10).

Is it possible to configure the timer to send a signal on pin 9 but to not touch pin 10?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痞味浪人 2024-11-10 09:17:15

答案是肯定的,可以。我使用了 TimerOne 库: http://www.arduino.cc/playground/Code/Timer1

setup()

  Timer1.initialize(5000)
  Timer1.disablePwm(10); //WiServer needs pin 10!
  Timer1.pwm(9, 0); //set up pin 9

The answer is yes, you can. I used the TimerOne library: http://www.arduino.cc/playground/Code/Timer1

in setup()

  Timer1.initialize(5000)
  Timer1.disablePwm(10); //WiServer needs pin 10!
  Timer1.pwm(9, 0); //set up pin 9
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文