欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 6492|回復: 0
打印 上一主題 下一主題
收起左側

Arduino 控制 WS2812 LED 燈的方法

[復制鏈接]
跳轉到指定樓層
樓主
本帖最后由 et1979e 于 2020-5-23 14:31 編輯



使用 Adafruit_NeoPixel 庫可以讓 Arduino 或 ESP8266 很方便地驅動 WS2812 燈條。
首先附件下載這個代碼庫
將 WS2812 的 DIN 接到 Arduino 的 6 號引腳,再連接好 VCC 和 GND。運行下面的示例程序。




#include<Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h> //Required for 16 MHz Adafruit Trinket
#endif
// 控制 WS2812 燈條的引腳編號
#definePIN        6
//定義控制的 LED 數量
#define NUMPIXELS 16
Adafruit_NeoPixelpixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
//相鄰 LED 之間的延遲,單位毫秒
#define DELAYVAL 500
void setup() {
  // These lines are specificallyto support the Adafruit Trinket 5V 16 MHz.
  // Any other board, you canremove 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(); // INITIALIZENeoPixel strip object (REQUIRED)
}
void loop() {
  pixels.clear(); // Set all pixelcolors to 'off'
  // The first NeoPixel in a strandis #0, second is 1, all the way up
  // to the count of pixels minusone.
  for(int i=0;i<NUMPIXELS; i++) { // For each pixel...
    // pixels.Color() takes RGBvalues, from 0,0,0 up to 255,255,255
    // Here we're using a moderatelybright green color:
    pixels.setPixelColor(i, pixels.Color(0,150, 0));
    pixels.show();   //Send the updated pixel colors to the hardware.

    delay(DELAYVAL); // Pause beforenext pass through loop

本文轉載

Adafruit_NeoPixel-1.4.0.tar.gz

47.32 KB, 下載次數: 28, 下載積分: 黑幣 -5

Adafruit_NeoPixel-1.4.0.zip

68.43 KB, 下載次數: 27, 下載積分: 黑幣 -5

評分

參與人數 1黑幣 +50 收起 理由
admin + 50 共享資料的黑幣獎勵!

查看全部評分

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏3 分享淘帖 頂 踩
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網

快速回復 返回頂部 返回列表