forked from sowbug/G35Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rainbow.cpp
149 lines (137 loc) · 3.88 KB
/
Rainbow.cpp
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
G35: An Arduino library for GE Color Effects G-35 holiday lights.
Copyright © 2012 The G35 Authors. Use, modification, and distribution are
subject to the BSD license as described in the accompanying LICENSE file.
By Mike Tsao <https://github.com/sowbug>.
Programs referenced in MEOPrograms by Mark Ortiz <github.com/MarkEMarkEMark>.
Portions adapted from Adafruit.
See README for complete attributions.
*/
#include <Rainbow.h>
#define PATTERN_COUNT (8)
Rainbow::Rainbow(G35& g35)
: LightProgram(g35), wait_(0), pattern_(rand() % PATTERN_COUNT), step_(0) {
}
uint32_t Rainbow::Do() {
bool fortyEight;
for (int i=0; i < light_count_; i++) {
switch (pattern_) {
case 0:
fortyEight = false;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::LineRG((i + step_) % 32));
break;
case 1:
fortyEight = false;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::LineGB((i + step_) % 32));
break;
case 2:
fortyEight = false;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::LineBR((i + step_) % 32));
break;
case 3:
fortyEight = true;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::Wheel((i + step_) % 48));
break;
case 4:
fortyEight = false;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::LineRG(((i * 32 / light_count_) + step_) % 32));
break;
case 5:
fortyEight = false;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::LineGB(((i * 32 / light_count_) + step_) % 32));
break;
case 6:
fortyEight = false;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::LineBR(((i * 32 / light_count_) + step_) % 32));
break;
case 7:
fortyEight = true;
g35_.fill_color(i, 1, G35::MAX_INTENSITY,
Rainbow::Wheel(((i * 48 / light_count_) + step_) % 48));
break;
}
}
// reset at end of wheel or line
++step_;
if (((step_ == 48) && fortyEight) || ((step_ == 32) && !fortyEight)) {
step_ = 0;
}
delay(wait_);
return bulb_frame_;
}
uint32_t Rainbow::Wheel(uint16_t WheelPos) {
byte r, g, b;
switch (WheelPos / 16) {
case 0:
r = 15 - WheelPos % 16; // red down
g = WheelPos % 16; // green up
b = 0; // blue off
break;
case 1:
g = 15 - WheelPos % 16; // green down
b = WheelPos % 16; // blue up
r = 0; // red off
break;
case 2:
b = 15 - WheelPos % 16; // blue down
r = WheelPos % 16; // red up
g = 0; // green off
break;
}
return (COLOR(r,g,b));
}
uint32_t Rainbow::LineRG(uint16_t WheelPos) {
byte r, g, b;
switch (WheelPos / 16) {
case 0:
r = 15 - WheelPos % 16; // red down
g = WheelPos % 16; // green up
b = 0; // blue off
break;
case 1:
r = WheelPos % 16; // red up
g = 15 - WheelPos % 16; // green down
b = 0; // blue off
break;
}
return (COLOR(r,g,b));
}
uint32_t Rainbow::LineGB(uint16_t WheelPos) {
byte r, g, b;
switch (WheelPos / 16) {
case 0:
r = 0; // red off
g = 15 - WheelPos % 16; // green down
b = WheelPos % 16; // blue up
break;
case 1:
r = 0; // red off
g = WheelPos % 16; // green up
b = 15 - WheelPos % 16; // blue down
break;
}
return (COLOR(r,g,b));
}
uint32_t Rainbow::LineBR(uint16_t WheelPos) {
byte r, g, b;
switch (WheelPos / 16) {
case 0:
r = WheelPos % 16; // red up
g = 0; // green off
b = 15 - WheelPos % 16; // blue down
break;
case 1:
r = 15 - WheelPos % 16; // red down
g = 0; // green off
b = WheelPos % 16; // blue up
break;
}
return (COLOR(r,g,b));
}