“炫彩LED灯”的版本间的差异
853387039@qq.com(讨论 | 贡献) |
853387039@qq.com(讨论 | 贡献) |
||
第44行: | 第44行: | ||
|[[mCookie-Hub/zh]]||1||传感器转接板 | |[[mCookie-Hub/zh]]||1||传感器转接板 | ||
|- | |- | ||
− | | [[Microduino-Color led/zh]]||1||彩灯 | + | |[[Microduino-Color led/zh]]||1||彩灯 |
|} | |} | ||
− | + | [[File:color_led-module.jpg|center|600px]] | |
− | === | + | ===准备=== |
*Setup 1:将Color led背面的'''IN'''和Hub的数字口(D6)接起来,这个就是控制LED的引脚,用户可自己更改。 | *Setup 1:将Color led背面的'''IN'''和Hub的数字口(D6)接起来,这个就是控制LED的引脚,用户可自己更改。 | ||
[[file:mCookie-strandtext-sensor.JPG|600px|center]] | [[file:mCookie-strandtext-sensor.JPG|600px|center]] | ||
*Setup 2:将CoreUSB,Hub,Color LED连接在一起。通过USB数据线将接入电脑。 | *Setup 2:将CoreUSB,Hub,Color LED连接在一起。通过USB数据线将接入电脑。 | ||
[[file:mCookie-strandtext-pc.JPG|600px|center]] | [[file:mCookie-strandtext-pc.JPG|600px|center]] | ||
− | * | + | ===实验一:点亮彩灯=== |
+ | *打开Arduino IDE,将下列代码复制到IDE中。 | ||
<source lang="cpp"> | <source lang="cpp"> | ||
#include <Adafruit_NeoPixel.h> | #include <Adafruit_NeoPixel.h> | ||
第69行: | 第70行: | ||
void loop() { | void loop() { | ||
− | colorWipe(strip.Color(255, 0, 0), 500); // | + | colorWipe(strip.Color(255, 0, 0), 500); // 第一个灯亮红色隔500ms第二个灯亮红色 |
− | colorWipe(strip.Color(0, 255, 0), 500); // | + | colorWipe(strip.Color(0, 255, 0), 500); // 第一个灯亮红色隔500ms第二个灯亮绿色 |
− | colorWipe(strip.Color(0, 0, 255), 500); // | + | colorWipe(strip.Color(0, 0, 255), 500); // 第一个灯亮红色隔500ms第二个灯亮蓝色 |
} | } | ||
第84行: | 第85行: | ||
} | } | ||
</source> | </source> | ||
− | * | + | *选择正确的板卡和COM端口,编译通过后直接下载。参考[[AVR核心:Getting started/zh]] |
[[file:upload.JPG|thumb|800px|center]] | [[file:upload.JPG|thumb|800px|center]] | ||
− | * | + | *结果每隔500ms切换一个灯显示,颜色分别是红,绿,蓝,依次循环。 |
===程序调试=== | ===程序调试=== | ||
第96行: | 第97行: | ||
***G:绿色值(0-255)。 | ***G:绿色值(0-255)。 | ||
***B:蓝色值(0-255)。 | ***B:蓝色值(0-255)。 | ||
− | **“uint8_t | + | **“uint8_t wait”定义单个灯亮的时间。 |
**例子:colorWipe(strip.Color(255, 0, 0), 500);每隔500ms切换到下一个灯显示红色。 | **例子:colorWipe(strip.Color(255, 0, 0), 500);每隔500ms切换到下一个灯显示红色。 | ||
**用户可以用颜色工具来更改颜色[http://www.atool.org/colorpicker.php color]。 | **用户可以用颜色工具来更改颜色[http://www.atool.org/colorpicker.php color]。 | ||
+ | ===实验一:呼吸灯=== | ||
+ | *打开Arduino IDE,将下列代码复制到IDE中。 | ||
+ | <source lang="cpp"> | ||
+ | #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); | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
+ | *选择正确的板卡和COM端口,编译通过后直接下载。 | ||
+ | [[file:upload.JPG|thumb|800px|center]] | ||
+ | *结果红,绿,蓝灯一次循环呼吸。 | ||
+ | ===调试代码=== | ||
+ | *“rainbowCycle( int r, int g, int b, uint8_t wait)”函数说明: | ||
+ | **r:红色值(0-255)。 | ||
+ | **g:绿色值(0-255)。 | ||
+ | **b:蓝色值(0-255)。 | ||
+ | **“uint8_t wait”定义呼吸的速度,数值越小呼吸速度越快。 | ||
==应用== | ==应用== | ||
*LED全彩发光字灯串,LED全彩模组, LED全彩软灯条硬灯条,LED护栏管。 | *LED全彩发光字灯串,LED全彩模组, LED全彩软灯条硬灯条,LED护栏管。 | ||
*LED点光源,LED像素屏,LED异形屏,各种电子产品,电器设备跑马灯。 | *LED点光源,LED像素屏,LED异形屏,各种电子产品,电器设备跑马灯。 | ||
|} | |} |
2015年10月14日 (三) 14:54的版本
Language | English |
---|
概述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);
}
}
调试代码
应用
|