我试图在Arduino上用PWM引导闪烁,我不知道什么是错的。但我的LED并没有消失。怎么了?我认为我的寄存器设置不好,但我不确定。 Led连接在arduino引脚11上。谢谢。
#include <avr/io.h>
#include <util/delay.h>
const int delay=1000;
void initialize_PWM()
{
TCCR0A|=(1<<WGM00)|(1<<WGM01)|(1<<COM0A1);
TCCR0B=1;
DDRB|=(1<<PB3);
}
void set_pwm(uint8_t data)
{
OCR0A=data;
}
int main (void)
{
initialize_PWM();
uint8_t brightness=200;
while(1)
{
for(brightness=0;brightness<255;brightness++)
{
set_pwm(brightness);
_delay_ms(1);
}
for(brightness=255;brightness>0;brightness--)
{
set_pwm(brightness);
_delay_ms(1);
}
}
return 0;
}
答案 0 :(得分:1)
你看过'淡化'示例程序吗?
/*
Fade
This example shows how to fade an LED on pin 9
using the analogWrite() function.
This example code is in the public domain.
*/
int led = 9; // the pin that the LED is attached to
int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
// the setup routine runs once when you press reset:
void setup() {
// declare pin 9 to be an output:
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
// set the brightness of pin 9:
analogWrite(led, brightness);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
// reverse the direction of the fading at the ends of the fade:
if (brightness == 0 || brightness == 255) {
fadeAmount = -fadeAmount ;
}
// wait for 30 milliseconds to see the dimming effect
delay(30);
}
答案 1 :(得分:1)
您的代码似乎是正确的,但您使用的是timer0,它可以在Arduino UNO的引脚5和6上生成pwm,如数据表所示。所以你应该用a设置ddrd bit 6 DDRD | =(1&lt;&lt; PD6) ,这是Arduino上的引脚6,而不是引脚11.如果你想在引脚11上使用pwm,你应该使用timer2。