File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -124,17 +124,17 @@ void seven(int totalLEDs) {
124
124
}
125
125
126
126
void threeMarquee (int totalLEDs) {
127
- /* if (iteration == 10) {
128
- /* ensure that we only change the offset once every 100 iterations, so that you can see the marquee effect
127
+ if (iteration == 10 ) {
128
+ /* ensure that we only change the offset once every 100 iterations, so that you can see the marquee effect */
129
129
iteration = 0 ;
130
130
131
131
if (marqueeOffset < totalLEDs) {
132
- /* we can only offset the count up to the total number of LEDs we're processing
132
+ /* we can only offset the count up to the total number of LEDs we're processing */
133
133
marqueeOffset++;
134
134
} else {
135
135
marqueeOffset = 0 ;
136
136
}
137
- }*/
137
+ }
138
138
139
139
for (int i = 0 ; i < totalLEDs; i++){
140
140
int ledPosition = i + marqueeOffset;
@@ -177,7 +177,6 @@ void loop(){
177
177
// setColors(7, 60);
178
178
threeMarquee (60 );
179
179
}
180
- // Serial.println();
181
180
182
181
183
-
182
+
You can’t perform that action at this time.
0 commit comments