“炫彩LED灯”的版本间的差异
(→实验一:点亮彩灯) |
(→实验一:点亮彩灯) |
||
第86行: | 第86行: | ||
} | } | ||
</source> | </source> | ||
− | * | + | *选择正确的板卡和COM端口 |
− | [[file:upload.JPG|thumb|800px|center]] | + | [[file:upload.JPG|400px|center]] |
+ | *编译 | ||
+ | **编译时会提示保存项目,用户可以自己命名保存到你的文件夹即可。 | ||
+ | *下载 | ||
+ | **编译成功后可以直接下载,提示下载成功表示程序下载完毕。 | ||
+ | [[file:upload-led.JPG|thumb|800px|center]] | ||
*结果每隔500ms切换一个灯显示,颜色分别是红,绿,蓝,依次循环。 | *结果每隔500ms切换一个灯显示,颜色分别是红,绿,蓝,依次循环。 | ||
2015年11月4日 (三) 08:34的版本
概述Microduino-Color led是彩色LED灯,内置IC控制芯片,单总线控制,可任意级联,只需要一个I/O口就可以控制所有的灯,每个彩灯都可以单独控制。 特色
规格
文档开发设备
准备
实验一:点亮彩灯
#include <Adafruit_NeoPixel.h>
#define PIN 6 //led灯控制引脚
#define PIN_NUM 2 //允许接的led灯的个数
Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIN_NUM, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
strip.begin();
strip.show();
}
void loop() {
colorWipe(strip.Color(255, 0, 0), 500); // 第一个灯亮红色隔500ms第二个灯亮红色
colorWipe(strip.Color(0, 255, 0), 500); // 第一个灯亮红色隔500ms第二个灯亮绿色
colorWipe(strip.Color(0, 0, 255), 500); // 第一个灯亮红色隔500ms第二个灯亮蓝色
}
// Fill the dots one after the other with a color
void colorWipe(uint32_t c, uint8_t wait) {
//循环依次让每隔灯亮指定的颜色,C表示颜色,wait表示每个灯的颜色持续的时间
for (uint16_t i = 0; i < strip.numPixels(); i++) {
strip.setPixelColor(i, c);
strip.show();
delay(wait);
}
}
程序调试
实验二:呼吸灯
#include <Adafruit_NeoPixel.h>
#define PIN 6 //led灯控制引脚
#define PIN_NUM 2 //允许接的led灯的个数
#define val_max 255
#define val_min 0
Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIN_NUM, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
strip.begin();
strip.show();
}
void loop() {
rainbowCycle( 255, 0, 0, 10);//红色呼吸
rainbowCycle( 0, 255, 0, 10);//绿色呼吸
rainbowCycle( 0, 0, 255, 10);//蓝色呼吸
}
void colorSet(uint32_t c) {
for (uint16_t i = 0; i < strip.numPixels(); i++) {
strip.setPixelColor(i, c);
}
strip.show();
}
void rainbowCycle( int r, int g, int b, uint8_t wait) {
for (int val = 0; val < 255; val++)
{
colorSet(strip.Color(map(val, val_min, val_max, 0, r), map(val, val_min, val_max, 0, g), map(val, val_min, val_max, 0, b)));
delay(wait);
}
for (int val = 255; val >= 0; val--)
{
colorSet(strip.Color(map(val, val_min, val_max, 0, r), map(val, val_min, val_max, 0, g), map(val, val_min, val_max, 0, b)));
delay(wait);
}
}
调试代码
应用
|