由于我使用的是共阴极的RGB LED,如果你的是共阳极的,接线的时候要注意一下.

其他没什么不同

//定义RGB色彩的输出I/O
int redPin = ;
int greenPin = ;
int bluePin = ; //标记颜色变化的方式,增加值还是减小值
bool redBool =false;
bool greenBool=true;
bool blueBool=false;
//颜色值,初始化为0,127,255
int redVal =;
int greenVal=;
int blueVal=; void setup()
{
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
} /**
* 改变颜色的增减顺序
*/
void changeStatus()
{
if (redVal==)
{
redBool=true;
}
else if (redVal==)
{
redBool=false;
} if (greenVal==)
{
greenBool=true;
}
else if (greenVal==)
{
greenBool=false;
} if (blueVal==)
{
blueBool=true;
}
else if (blueVal==)
{
blueBool=false;
}
} /**
* 改变颜色的变化量,增加还是减少
*/
void changeColorVal()
{
if (redBool)
{
redVal++;
}
else
{
redVal--;
}
if (greenBool)
{
greenVal++;
}
else
{
greenVal--;
}
if (blueBool)
{
blueVal++;
}
else
{
blueVal--;
}
}
/**
* 设置led灯颜色
*/
void setColor(int red, int green, int blue)
{
analogWrite(redPin, red);
analogWrite(greenPin, green);
analogWrite(bluePin, blue);
}
void loop()
{
//更新颜色变化状态
changeStatus();
//更新颜色值
changeColorVal();
//设置颜色
setColor(redVal, greenVal, blueVal);
delay();
}
05-08 15:49