1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 |
#include <Adafruit_NeoPixel.h>
#define PIN 6
Adafruit_NeoPixel strip = Adafruit_NeoPixel(60, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
strip.begin();
strip.show();
}
void loop() {
for(uint16_t i=0; i<strip.numPixels(); i++) {
strip.setPixelColor(i, strip.Color(255, 0, 0));
strip.show();
delay(50);
}
} |
cs |
'Study > 아두이노( Arduino)' 카테고리의 다른 글
ATMEGA64M1 Arduino Bootloader (0) | 2021.11.03 |
---|---|
AST-CAN 부트로더 구울때 에러 (0) | 2019.11.13 |
조도 센서(Adafruit Lux Sensor TSL2561) 예제 소스 (0) | 2018.03.31 |
Delay를 사용하지 않는 NeoPixel 예제 소스 (0) | 2018.03.26 |