forked from evilgeniuslabs/torch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtorch.ino
764 lines (615 loc) · 18.4 KB
/
torch.ino
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
/*
* Torch: https://github.com/evilgeniuslabs/torch
* Copyright (C) 2015 Jason Coon
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <FastLED.h>
#include <EEPROM.h>
#include <Bounce2.h>
#if FASTLED_VERSION < 3001000
#error "Requires FastLED 3.1 or later; check github for latest code."
#endif
#define LED_PIN 13
#define COLOR_ORDER GRB
#define CHIPSET WS2812B
#define NUM_LEDS 120
uint16_t XY(uint8_t x, uint8_t y);
void dimAll(byte value);
uint16_t colorWaves();
uint16_t pride();
uint16_t cloudTwinkles();
uint16_t rainbowTwinkles();
uint16_t snowTwinkles();
uint16_t incandescentTwinkles();
uint16_t fireflies();
uint16_t rainbow();
uint16_t rainbowWithGlitter();
void addGlitter(fract8 chanceOfGlitter);
uint16_t confetti();
uint16_t bpm();
uint16_t juggle();
uint16_t showSolidColor();
uint16_t hueCycle();
uint16_t sinelon();
const uint8_t MATRIX_WIDTH = 10;
const uint8_t MATRIX_HEIGHT = 12;
const int MATRIX_CENTER_X = MATRIX_WIDTH / 2;
const int MATRIX_CENTER_Y = MATRIX_HEIGHT / 2;
const byte MATRIX_CENTRE_X = MATRIX_CENTER_X - 1;
const byte MATRIX_CENTRE_Y = MATRIX_CENTER_Y - 1;
const uint8_t brightnessCount = 5;
uint8_t brightnessMap[brightnessCount] = { 16, 32, 64, 128, 255 };
uint8_t brightness = brightnessMap[0];
CRGB leds[NUM_LEDS + 1];
#define BUTTON_1_PIN 2
#define BUTTON_2_PIN 3
Bounce button1 = Bounce();
Bounce button2 = Bounce();
#include "GradientPalettes.h"
CRGB solidColor (122, 75, 10);
typedef uint16_t(*PatternFunctionPointer)();
typedef PatternFunctionPointer PatternList [];
#define ARRAY_SIZE(A) (sizeof(A) / sizeof((A)[0]))
int autoPlayDurationSeconds = 10;
unsigned int autoPlayTimout = 0;
bool autoplayEnabled = false;
int currentPatternIndex = 0;
PatternFunctionPointer currentPattern;
CRGB w(85, 85, 85), W(CRGB::White);
CRGBPalette16 snowColors = CRGBPalette16( W, W, W, W, w, w, w, w, w, w, w, w, w, w, w, w );
CRGB l(0xE1A024);
CRGBPalette16 incandescentColors = CRGBPalette16( l, l, l, l, l, l, l, l, l, l, l, l, l, l, l, l );
const CRGBPalette16 palettes[] = {
RainbowColors_p,
RainbowStripeColors_p,
OceanColors_p,
CloudColors_p,
ForestColors_p,
PartyColors_p,
HeatColors_p,
LavaColors_p,
snowColors,
};
const int paletteCount = ARRAY_SIZE(palettes);
int currentPaletteIndex = 0;
CRGBPalette16 palette = palettes[0];
uint8_t gHue = 0; // rotating "base color" used by many of the patterns
#include "Drawing.h"
#include "Effects.h"
#include "Noise.h"
#include "Pulse.h"
#include "Wave.h"
#include "Fire2012WithPalette.h"
#include "Torch.h"
const PatternList patterns = {
// analyzerColumns,
//analyzerColumnsSolid,
// analyzerPixels,
// fallingSpectrogram
torch,
// fire2012WithPalette,
pulse,
//blackAndBlueNoise,
//fireNoise,
//lavaNoise,
wave,
//rainbowNoise,
//rainbowStripeNoise,
// blackAndWhiteAudioNoise,
//colorWaves,
//partyNoise,
//forestNoise,
//cloudNoise,
//oceanNoise,
// blackAndWhiteNoise,
pride,
//rainbow,
//rainbowWithGlitter,
confetti,
//bpm,
juggle,
sinelon,
//hueCycle,
rainbowTwinkles,
//snowTwinkles,
//cloudTwinkles,
//incandescentTwinkles,
fireflies,
showSolidColor
};
const int patternCount = ARRAY_SIZE(patterns);
void setup() {
delay(500); // sanity delay
// Serial.begin(9600);
// Serial.println("setup start");
loadSettings();
FastLED.addLeds<CHIPSET, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS);
FastLED.setCorrection(TypicalLEDStrip);
FastLED.setBrightness(brightness);
// FastLED.setDither(false);
FastLED.setDither(brightness < 255);
pinMode(BUTTON_1_PIN, INPUT_PULLUP);
pinMode(BUTTON_2_PIN, INPUT_PULLUP);
button1.attach(BUTTON_1_PIN);
button2.attach(BUTTON_2_PIN);
button1.interval(5);
button2.interval(5);
currentPattern = patterns[currentPatternIndex];
autoPlayTimout = millis() + (autoPlayDurationSeconds * 1000);
// Serial.println("setup end");
}
void loop() {
// Add entropy to random number generator; we use a lot of it.
random16_add_entropy(random());
uint16_t requestedDelay = currentPattern();
FastLED.show(); // display this frame
handleInput(requestedDelay);
//if (autoplayEnabled && millis() > autoPlayTimout) {
// move(1);
// autoPlayTimout = millis() + (autoPlayDurationSeconds * 1000);
//}
// do some periodic updates
EVERY_N_MILLISECONDS(20) {
gHue++; // slowly cycle the "base color" through the rainbow
}
}
void loadSettings() {
// load settings from EEPROM
// brightness
brightness = EEPROM.read(0);
if (brightness < 1)
brightness = 1;
else if (brightness > 255)
brightness = 255;
// currentPatternIndex
currentPatternIndex = EEPROM.read(1);
if (currentPatternIndex < 0)
currentPatternIndex = 0;
else if (currentPatternIndex >= patternCount)
currentPatternIndex = patternCount - 1;
// solidColor
solidColor.r = EEPROM.read(2);
solidColor.g = EEPROM.read(3);
solidColor.b = EEPROM.read(4);
if (solidColor.r == 0 && solidColor.g == 0 && solidColor.b == 0)
setSolidColor(solidColor.setRGB(122,75,10));
}
void setSolidColor(CRGB color) {
solidColor = color;
EEPROM.write(2, solidColor.r);
EEPROM.write(3, solidColor.g);
EEPROM.write(4, solidColor.b);
moveTo(patternCount - 1);
}
void powerOff()
{
// clear the display
const uint8_t stepSize = 4;
for (uint8_t i = 0; i < NUM_LEDS / 2 - stepSize; i += stepSize) {
for (uint8_t j = 0; j < stepSize; j++) {
leds[i + j] = CRGB::Black;
leds[(NUM_LEDS - 1) - (i + j)] = CRGB::Black;
}
FastLED.show(); // display this frame
}
fill_solid(leds, NUM_LEDS, CRGB::Black);
FastLED.show(); // display this frame
while (true) {
// check for physical button input
button1.update();
button2.update();
if (button1.rose() || button2.rose()) {
Serial.println("Button released");
return;
}
}
}
void move(int delta) {
moveTo(currentPatternIndex + delta);
}
void moveTo(int index) {
currentPatternIndex = index;
if (currentPatternIndex >= patternCount)
currentPatternIndex = 0;
else if (currentPatternIndex < 0)
currentPatternIndex = patternCount - 1;
currentPattern = patterns[currentPatternIndex];
fill_solid(leds, NUM_LEDS, CRGB::Black);
EEPROM.write(1, currentPatternIndex);
}
int getBrightnessLevel() {
int level = 0;
for (int i = 0; i < brightnessCount; i++) {
if (brightnessMap[i] >= brightness) {
level = i;
break;
}
}
return level;
}
uint8_t cycleBrightness() {
adjustBrightness(1);
if (brightness == brightnessMap[0])
return 0;
return brightness;
}
void adjustBrightness(int delta) {
int level = getBrightnessLevel();
level += delta;
// don't wrap
if (level < 0)
level = 0;
if (level >= brightnessCount)
level = brightnessCount - 1;
brightness = brightnessMap[level];
FastLED.setBrightness(brightness);
FastLED.setDither(brightness < 255);
EEPROM.write(0, brightness);
}
void cyclePalette(int delta = 1) {
if (currentPaletteIndex == 0 && delta < 0)
currentPaletteIndex = paletteCount - 1;
else if (currentPaletteIndex >= paletteCount - 1 && delta > 0)
currentPaletteIndex = 0;
else
currentPaletteIndex += delta;
if (currentPaletteIndex >= paletteCount)
currentPaletteIndex = 0;
palette = palettes[currentPaletteIndex];
}
unsigned long button1PressTimeStamp;
unsigned long button2PressTimeStamp;
void handleInput(unsigned int requestedDelay) {
unsigned long previousMillis = millis();
while (true) {
// check for physical button input
button1.update();
button2.update();
if (button1.fell()) {
Serial.println("Button 1 depressed");
button1PressTimeStamp = millis();
}
if (button2.fell()) {
Serial.println("Button 2 depressed");
button2PressTimeStamp = millis();
}
if (button1.rose()) {
Serial.println("Button 1 released");
move(1);
}
if (button2.rose()) {
Serial.println("Button 2 released");
powerOff();
break;
}
if ((millis() - previousMillis) >= requestedDelay)
break;
}
}
uint16_t XY( uint8_t x, uint8_t y) // maps the matrix to the strip
{
uint16_t i;
i = (y * MATRIX_WIDTH) + (MATRIX_WIDTH - x);
i = (NUM_LEDS - 1) - i;
if (i > NUM_LEDS)
i = NUM_LEDS;
return i;
}
// scale the brightness of the screenbuffer down
void dimAll(byte value)
{
for (int i = 0; i < NUM_LEDS; i++) {
leds[i].nscale8(value);
}
}
uint16_t showSolidColor() {
fill_solid(leds, NUM_LEDS, solidColor);
return 60;
}
uint16_t rainbow()
{
// FastLED's built-in rainbow generator
fill_rainbow(leds, NUM_LEDS, gHue, 1);
return 8;
}
uint16_t rainbowWithGlitter()
{
// built-in FastLED rainbow, plus some random sparkly glitter
rainbow();
addGlitter(80);
return 8;
}
void addGlitter(fract8 chanceOfGlitter)
{
if (random8() < chanceOfGlitter) {
leds[random16(NUM_LEDS)] += CRGB::White;
}
}
uint16_t confetti()
{
// random colored speckles that blink in and fade smoothly
fadeToBlackBy(leds, NUM_LEDS, 10);
int pos = random16(NUM_LEDS);
leds[pos] += ColorFromPalette(palette, gHue + random8(64), 255); // CHSV(gHue + random8(64), 200, 255);
return 20;
}
uint16_t bpm()
{
// colored stripes pulsing at a defined Beats-Per-Minute (BPM)
uint8_t BeatsPerMinute = 62;
uint8_t beat = beatsin8(BeatsPerMinute, 64, 255);
for (int i = 0; i < NUM_LEDS; i++) { //9948
leds[i] = ColorFromPalette(palette, gHue + (i * 2), beat - gHue + (i * 10));
}
return 8;
}
uint16_t juggle() {
// N colored dots, weaving in and out of sync with each other
fadeToBlackBy(leds, NUM_LEDS, 20);
byte dothue = 0;
byte dotCount = 3;
for (int i = 0; i < dotCount; i++) {
leds[beatsin16(i + dotCount - 1, 0, NUM_LEDS)] |= CHSV(dothue, 200, 255);
dothue += 256 / dotCount;
}
return 5;
}
// An animation to play while the crowd goes wild after the big performance
uint16_t applause()
{
static uint16_t lastPixel = 0;
fadeToBlackBy(leds, NUM_LEDS, 32);
leds[lastPixel] = CHSV(random8(HUE_BLUE, HUE_PURPLE), 255, 255);
lastPixel = random16(NUM_LEDS);
leds[lastPixel] = CRGB::White;
return 8;
}
// An "animation" to just fade to black. Useful as the last track
// in a non-looping performance-oriented playlist.
uint16_t fadeToBlack()
{
fadeToBlackBy(leds, NUM_LEDS, 10);
return 8;
}
uint16_t sinelon()
{
// a colored dot sweeping back and forth, with fading trails
fadeToBlackBy( leds, NUM_LEDS, 20);
uint16_t pos = beatsin16(13, 0, NUM_LEDS);
static uint16_t prevpos = 0;
if ( pos < prevpos ) {
fill_solid( leds + pos, (prevpos - pos) + 1, CHSV(gHue, 220, 255));
} else {
fill_solid( leds + prevpos, (pos - prevpos) + 1, CHSV( gHue, 220, 255));
}
prevpos = pos;
return 15;
}
uint16_t hueCycle() {
fill_solid(leds, NUM_LEDS, CHSV(gHue, 255, 255));
return 60;
}
// Pride2015 by Mark Kriegsman
// https://gist.github.com/kriegsman/964de772d64c502760e5
// This function draws rainbows with an ever-changing,
// widely-varying set of parameters.
uint16_t pride()
{
static uint16_t sPseudotime = 0;
static uint16_t sLastMillis = 0;
static uint16_t sHue16 = 0;
uint8_t sat8 = beatsin88(87, 220, 250);
uint8_t brightdepth = beatsin88(341, 96, 224);
uint16_t brightnessthetainc16 = beatsin88(203, (25 * 256), (40 * 256));
uint8_t msmultiplier = beatsin88(147, 23, 60);
uint16_t hue16 = sHue16;//gHue * 256;
uint16_t hueinc16 = beatsin88(113, 1, 3000);
uint16_t ms = millis();
uint16_t deltams = ms - sLastMillis;
sLastMillis = ms;
sPseudotime += deltams * msmultiplier;
sHue16 += deltams * beatsin88(400, 5, 9);
uint16_t brightnesstheta16 = sPseudotime;
for (int i = 0; i < NUM_LEDS; i++) {
hue16 += hueinc16;
uint8_t hue8 = hue16 / 256;
brightnesstheta16 += brightnessthetainc16;
uint16_t b16 = sin16(brightnesstheta16) + 32768;
uint16_t bri16 = (uint32_t) ((uint32_t) b16 * (uint32_t) b16) / 65536;
uint8_t bri8 = (uint32_t) (((uint32_t) bri16) * brightdepth) / 65536;
bri8 += (255 - brightdepth);
CRGB newcolor = CHSV(hue8, sat8, bri8);
uint8_t pixelnumber = i;
pixelnumber = (NUM_LEDS - 1) - pixelnumber;
nblend(leds[pixelnumber], newcolor, 64);
}
return 0;
}
///////////////////////////////////////////////////////////////////////
// Forward declarations of an array of cpt-city gradient palettes, and
// a count of how many there are. The actual color palette definitions
// are at the bottom of this file.
extern const TProgmemRGBGradientPalettePtr gGradientPalettes[];
extern const uint8_t gGradientPaletteCount;
// Current palette number from the 'playlist' of color palettes
uint8_t gCurrentPaletteNumber = 0;
CRGBPalette16 gCurrentPalette( CRGB::Black);
CRGBPalette16 gTargetPalette( gGradientPalettes[0] );
// ten seconds per color palette makes a good demo
// 20-120 is better for deployment
#define SECONDS_PER_PALETTE 10
uint16_t colorWaves()
{
EVERY_N_SECONDS( SECONDS_PER_PALETTE ) {
gCurrentPaletteNumber = addmod8( gCurrentPaletteNumber, 1, gGradientPaletteCount);
gTargetPalette = gGradientPalettes[ gCurrentPaletteNumber ];
}
EVERY_N_MILLISECONDS(40) {
nblendPaletteTowardPalette( gCurrentPalette, gTargetPalette, 16);
}
colorwaves( leds, NUM_LEDS, gCurrentPalette);
return 20;
}
// This function draws color waves with an ever-changing,
// widely-varying set of parameters, using a color palette.
void colorwaves( CRGB* ledarray, uint16_t numleds, CRGBPalette16& palette)
{
static uint16_t sPseudotime = 0;
static uint16_t sLastMillis = 0;
static uint16_t sHue16 = 0;
// uint8_t sat8 = beatsin88( 87, 220, 250);
uint8_t brightdepth = beatsin88( 341, 96, 224);
uint16_t brightnessthetainc16 = beatsin88( 203, (25 * 256), (40 * 256));
uint8_t msmultiplier = beatsin88(147, 23, 60);
uint16_t hue16 = sHue16;//gHue * 256;
uint16_t hueinc16 = beatsin88(113, 300, 1500);
uint16_t ms = millis();
uint16_t deltams = ms - sLastMillis ;
sLastMillis = ms;
sPseudotime += deltams * msmultiplier;
sHue16 += deltams * beatsin88( 400, 5, 9);
uint16_t brightnesstheta16 = sPseudotime;
for ( uint16_t i = 0 ; i < numleds; i++) {
hue16 += hueinc16;
uint8_t hue8 = hue16 / 256;
uint16_t h16_128 = hue16 >> 7;
if ( h16_128 & 0x100) {
hue8 = 255 - (h16_128 >> 1);
} else {
hue8 = h16_128 >> 1;
}
brightnesstheta16 += brightnessthetainc16;
uint16_t b16 = sin16( brightnesstheta16 ) + 32768;
uint16_t bri16 = (uint32_t)((uint32_t)b16 * (uint32_t)b16) / 65536;
uint8_t bri8 = (uint32_t)(((uint32_t)bri16) * brightdepth) / 65536;
bri8 += (255 - brightdepth);
uint8_t index = hue8;
//index = triwave8( index);
index = scale8( index, 240);
CRGB newcolor = ColorFromPalette( palette, index, bri8);
uint16_t pixelnumber = i;
pixelnumber = (numleds - 1) - pixelnumber;
nblend( ledarray[pixelnumber], newcolor, 128);
}
}
// Alternate rendering function just scrolls the current palette
// across the defined LED strip.
void palettetest( CRGB* ledarray, uint16_t numleds, const CRGBPalette16& gCurrentPalette)
{
static uint8_t startindex = 0;
startindex--;
fill_palette( ledarray, numleds, startindex, (256 / NUM_LEDS) + 1, gCurrentPalette, 255, LINEARBLEND);
}
#define STARTING_BRIGHTNESS 64
#define FADE_IN_SPEED 32
#define FADE_OUT_SPEED 20
uint8_t DENSITY = 255;
uint16_t cloudTwinkles()
{
DENSITY = 255;
colortwinkles(CloudColors_p);
return 20;
}
uint16_t rainbowTwinkles()
{
DENSITY = 255;
colortwinkles(RainbowColors_p);
return 25;
}
uint16_t snowTwinkles()
{
DENSITY = 255;
colortwinkles(snowColors);
return 20;
}
uint16_t incandescentTwinkles()
{
DENSITY = 255;
colortwinkles(incandescentColors);
return 20;
}
uint16_t fireflies()
{
DENSITY = 16;
colortwinkles(incandescentColors);
return 20;
}
enum { GETTING_DARKER = 0, GETTING_BRIGHTER = 1 };
void colortwinkles(CRGBPalette16 palette)
{
// Make each pixel brighter or darker, depending on
// its 'direction' flag.
brightenOrDarkenEachPixel( FADE_IN_SPEED, FADE_OUT_SPEED);
// Now consider adding a new random twinkle
if ( random8() < DENSITY ) {
int pos = random16(NUM_LEDS);
if ( !leds[pos]) {
leds[pos] = ColorFromPalette( palette, random8(), STARTING_BRIGHTNESS, NOBLEND);
setPixelDirection(pos, GETTING_BRIGHTER);
}
}
}
void brightenOrDarkenEachPixel( fract8 fadeUpAmount, fract8 fadeDownAmount)
{
for ( uint16_t i = 0; i < NUM_LEDS; i++) {
if ( getPixelDirection(i) == GETTING_DARKER) {
// This pixel is getting darker
leds[i] = makeDarker( leds[i], fadeDownAmount);
} else {
// This pixel is getting brighter
leds[i] = makeBrighter( leds[i], fadeUpAmount);
// now check to see if we've maxxed out the brightness
if ( leds[i].r == 255 || leds[i].g == 255 || leds[i].b == 255) {
// if so, turn around and start getting darker
setPixelDirection(i, GETTING_DARKER);
}
}
}
}
CRGB makeBrighter( const CRGB& color, fract8 howMuchBrighter)
{
CRGB incrementalColor = color;
incrementalColor.nscale8( howMuchBrighter);
return color + incrementalColor;
}
CRGB makeDarker( const CRGB& color, fract8 howMuchDarker)
{
CRGB newcolor = color;
newcolor.nscale8( 255 - howMuchDarker);
return newcolor;
}
// Compact implementation of
// the directionFlags array, using just one BIT of RAM
// per pixel. This requires a bunch of bit wrangling,
// but conserves precious RAM. The cost is a few
// cycles and about 100 bytes of flash program memory.
uint8_t directionFlags[ (NUM_LEDS + 7) / 8];
bool getPixelDirection( uint16_t i) {
uint16_t index = i / 8;
uint8_t bitNum = i & 0x07;
uint8_t andMask = 1 << bitNum;
return (directionFlags[index] & andMask) != 0;
}
void setPixelDirection( uint16_t i, bool dir) {
uint16_t index = i / 8;
uint8_t bitNum = i & 0x07;
uint8_t orMask = 1 << bitNum;
uint8_t andMask = 255 - orMask;
uint8_t value = directionFlags[index] & andMask;
if ( dir ) {
value += orMask;
}
directionFlags[index] = value;
}