arduinows2812灯条程序_Arduino 驱动 WS2812 LED 灯条的方法

使用 Adafruit_NeoPixel 库可以让 Arduino 或 ESP8266 很方便地驱动 WS2812 灯条。

首先下载这个代码库,地址:

https://github.com/adafruit/Adafruit_NeoPixel

将 WS2812 的 DIN 接到 Arduino 的 6 号引脚,再连接好 VCC 和 GND。运行下面的示例程序。

#include

#ifdef __AVR__

#include // Required for 16 MHz Adafruit Trinket

#endif

// 控制 WS2812 灯条的引脚编号

#define PIN 6

//定义控制的 LED 数量

#define NUMPIXELS 16

Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);

//相邻 LED 之间的延迟,单位毫秒

#define DELAYVAL 500

void setup() {

// These lines are specifically to support the Adafruit Trinket 5V 16 MHz.

// Any other board, you can remove this part (but no harm leaving it):

#if defined(__AVR_ATtiny85__) && (F_CPU == 16000000)

clock_prescale_set(clock_div_1);

#endif

// END of Trinket-specific code.

pixels.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)

}

void loop() {

pixels.clear(); // Set all pixel colors to 'off'

// The first NeoPixel in a strand is #0, second is 1, all the way up

// to the count of pixels minus one.

for(int i=0; i

// pixels.Color() takes RGB values, from 0,0,0 up to 255,255,255

// Here we're using a moderately bright green color:

pixels.setPixelColor(i, pixels.Color(0, 150, 0));

pixels.show(); // Send the updated pixel colors to the hardware.

delay(DELAYVAL); // Pause before next pass through loop

}

}

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值