我可以仅在一个引脚上使用 Arduino 16 位 PWM 吗?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是肯定的,可以。我使用了 TimerOne 库: http://www.arduino.cc/playground/Code/Timer1
在
setup()
中The answer is yes, you can. I used the TimerOne library: http://www.arduino.cc/playground/Code/Timer1
in
setup()