-
Notifications
You must be signed in to change notification settings - Fork 0
/
Neopixel.h
78 lines (66 loc) · 2.05 KB
/
Neopixel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#ifndef __NEOPIXEL_H__
#define __NEOPIXEL_H__
#include "IUpdatable.h"
#include "MetronomeModel.h"
#include "Adafruit_NeoPixel.h"
#define NUM_LEDS 16 // 네오픽셀 LED 갯수 설정
class Neopixel : public IUpdatable{
private:
int pin;
int rgb;
int ledBright = 255; // 초기 밝기 255(최대) 설정
MetronomeModel* model;
unsigned long* time;
unsigned long startTime;
Adafruit_NeoPixel* pixels;
public:
Neopixel(int _pin, int _rgb, MetronomeModel* _model, unsigned long* _time);
void update();
};
#endif
// // 네오픽셀 라이브러리 funnyNeo 이름으로 연결
// Adafruit_NeoPixel funnyNeo = Adafruit_NeoPixel(NUM_LEDS, NEO_PIN, NEO_GRBW + NEO_KHZ800);
// // 아두이노 초기화
// void setup()
// {
// funnyNeo.setBrightness(ledBright); // 밝기 설정 ( 0 ~ 255 )
// funnyNeo.begin(); // 네오픽셀 시작
// funnyNeo.show(); // 네오픽셀 초기화
// }
// void loop()
// {
// int i;
// uint32_t colorValue; // 색상값 저장 변수
// //빨간색 1바퀴 회전
// colorValue = funnyNeo.Color(255, 0, 0, 0); // Red
// for(i = 0; i < NUM_LEDS; i++)
// {
// funnyNeo.setPixelColor(i, colorValue);
// funnyNeo.show();
// delay(50);
// }
// // 녹색 1바퀴 회전
// colorValue = funnyNeo.Color(0, 255, 0, 0); // Green
// for(i = 0; i < NUM_LEDS; i++)
// {
// funnyNeo.setPixelColor(i, colorValue);
// funnyNeo.show();
// delay(50);
// }
// // 파랑색 1바퀴 회전
// colorValue = funnyNeo.Color(0, 0, 255, 0); // Blue
// for(i = 0; i < NUM_LEDS; i++)
// {
// funnyNeo.setPixelColor(i, colorValue);
// funnyNeo.show();
// delay(50);
// }
// // 하얀색 1바퀴 회전
// colorValue = funnyNeo.Color(0, 0, 0, 255); // White
// for(i = 0; i < NUM_LEDS; i++)
// {
// funnyNeo.setPixelColor(i, colorValue);
// funnyNeo.show();
// delay(50);
// }
// }