码迷,mamicode.com
首页 > 其他好文 > 详细

Ardunio led呼吸灯

时间:2016-08-28 23:45:59      阅读:521      评论:0      收藏:0      [点我收藏+]

标签:

#include <Adafruit_NeoPixel.h>

#define PIN 9
#define LED_NUM 16
Adafruit_NeoPixel strip = Adafruit_NeoPixel(LED_NUM, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
// put your setup code here, to run once:
strip.begin();
}

uint32_t R =0;
uint32_t G =0;
uint32_t B =0;
uint32_t color;
int bright =0;
void loop() {
uint32_t color = strip.Color(R, G, B);
int i;
for (i=0;i<LED_NUM;i++)
{
    strip.setPixelColor(i,color);
}
if (R>=255)
{
    bright=1;
}
else if (R<=0)
{
    bright=0;
}
strip.show();
delay(20);
if (bright==0)
{
    delay(100);
    R++;
    G++;
    B++;
}
else
{
    R--;
    G--;
    B--;
}
}

Ardunio led呼吸灯

标签:

原文地址:http://www.cnblogs.com/sun_catboy/p/5816324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!