制造商零件编号 1507
ADDRESS LED STRIP SERIAL RGB 1M
Adafruit Industries LLC
所订产品一般在 7-10个工作日 内送达中国,具体时间取决于收货地点。
最低订购金额为人民币 300 元,顺丰快递免运费配送。
当用人民币下单时,按照国际贸易条款 DDP(DigiKey 支付关税、海关费用和当地税款)方式结算。
电汇预付
更多来自全授权合作伙伴的产品
下单后,从合作伙伴发货平均需要时间 1-3 天,也可能产生额外运费。可能另外收取运费。 实际发货时间请留意产品详情页、购物车和结账页面上的说明。
国际贸易结算方式:CPT(交货时支付关税、海关费用和适用 VAT/应付税金)
有关详情,请访问帮助和支持
License: General Public License Arduino
For those of you who know what the “Upside Down” is, you will recognize these familiar lights. In our office, we like to decorate for the different seasons and this year for Halloween we made it look very similar to the show Stranger Things. In order to make this work, we were able to find early ‘80s wallpaper as well as the classic C7 Christmas lights. Adding the alphabet to the wall and finishing the look off with Neopixel LEDs to replicate the scene in the show. Topped off with a Missing person flyer for Barb..... poor Barb......
To make the Neopixels work, I used and Adafruit Metro board which runs Arduino IDE. The code is very simple. I started by using the Adafruit library for neopixels. You have to make sure to change the number of LED’s to the number you have in your string. In my project, it is 120 leds 3 for every letter of the alphabet.
The code was simple. I just turned on the neopixels for the individual letters I wanted turned on. You can have these turn on to any color. I used red and left the letters used Blue just so it was easier for hall monitors to see what it says. “RUN”. Simple as that, you can change the colors and play around with the RGB neopixels for your specific application.
#include <Adafruit_NeoPixel.h>
#define PIN 6
Adafruit_NeoPixel strip = Adafruit_NeoPixel(120, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
strip.begin();
strip.show(); // Initialize all pixels to 'off'
}
void loop() {
// RUN
for(int i=0;i<120;i++){
strip.setPixelColor(80, 105, 0, 0);
strip.setPixelColor(81, 105, 0, 0);
strip.setPixelColor(82, 105, 0, 0);
}
strip.show();
delay(600);
for(int i=0;i<120;i++){
strip.setPixelColor(80, 0, 0, 105);
strip.setPixelColor(81, 0, 0, 105);
strip.setPixelColor(82, 0, 0, 105);
strip.setPixelColor(95, 105, 0, 0);
strip.setPixelColor(96, 105, 0, 0);
strip.setPixelColor(97, 105, 0, 0);
}
strip.show();
delay(600);
for(int i=0;i<120;i++){
strip.setPixelColor(95, 0, 0, 105);
strip.setPixelColor(96, 0, 0, 105);
strip.setPixelColor(97, 0, 0, 105);
strip.setPixelColor(52, 105, 0, 0);
strip.setPixelColor(53, 105, 0, 0);
strip.setPixelColor(54, 105, 0, 0);
}
strip.show();
delay(600);
for(int i=0;i<120;i++){
strip.setPixelColor(52, 0, 0, 105);
strip.setPixelColor(53, 0, 0, 105);
strip.setPixelColor(54, 0, 0, 105);
}
strip.show();
delay(2100);}
谢谢!
敬请关注收件箱中的 DigiKey 新闻与更新!
请输入电子邮件地址