-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXmas_Controller_DMX.ino
1251 lines (771 loc) · 26.9 KB
/
Xmas_Controller_DMX.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
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
//#define SERIAL_RX_BUFFER_SIZE 16
#include <DMXSerial.h>
const int DMXA = 20;
const int DMXB = 21;
String inputString = ""; // a String to hold incoming data
boolean stringComplete = false; // whether the string is complete
byte inByte[3];
byte rxindex = 0;
int REDVALUE = 0;
int GREENVALUE = 0;
int BLUEVALUE = 0;
int Channel = 0;
int Value = 0;
int FXmode = 0;
byte oldChannel = 0;
byte oldValue = 0;
byte fadespeed = 10;
byte strobespeed = 10;
byte tronspeed = 15;
byte scrollspeed = 50;
byte ripplespeed = 50;
// Parameter 1 = number of pixels in strip
// Parameter 2 = Arduino pin number (most are valid)
// Parameter 3 = pixel type flags, add together as needed:
// NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
// NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
// NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products)
// NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
// NEO_RGBW Pixels are wired for RGBW bitstream (NeoPixel RGBW products)
//from wearers perspective
Adafruit_NeoPixel strip = Adafruit_NeoPixel(100, 6, NEO_GRB + NEO_KHZ800); //ARM right D6 is right ARM
Adafruit_NeoPixel strip3 = Adafruit_NeoPixel(55, 7, NEO_GRB + NEO_KHZ800); //front both
Adafruit_NeoPixel strip2 = Adafruit_NeoPixel(55, 3, NEO_GRB + NEO_KHZ800); //ARM right D6 is right ARM
Adafruit_NeoPixel strip4 = Adafruit_NeoPixel(55, 8, NEO_GRB + NEO_KHZ800); //LAPEL
//Adafruit_NeoPixel strip4 = Adafruit_NeoPixel(55, 3, NEO_GRB + NEO_KHZ800); //epaulettes
Adafruit_NeoPixel strip5 = Adafruit_NeoPixel(55, 4, NEO_GRB + NEO_KHZ800); //LEFT ARM
// IMPORTANT: To reduce NeoPixel burnout risk, add 1000 uF capacitor across
// pixel power leads, add 300 - 500 Ohm resistor on first pixel's data input
// and minimize distance between Arduino and first pixel. Avoid connecting
// on a live circuit...if you must, connect GND first.
void setup() {
// This is for Trinket 5V 16MHz, you can remove these three lines if you are not using a Trinket
#if defined (__AVR_ATtiny85__)
if (F_CPU == 16000000) clock_prescale_set(clock_div_1);
#endif
// End of trinket special code
DMXSerial.init(DMXReceiver);
Serial.begin(115200);
// set some default values
// DMXSerial.write(1, 11);
// DMXSerial.write(2, 0);
// initialize serial:
// DMXSerial.init(DMXReceiver);
//
// reserve 200 bytes for the inputString:
inputString.reserve(255);
strip.begin();
strip.show(); // Initialize all pixels to 'off'
// strip2.begin();
/*strip2.show(); // Initialize all pixels to 'off'
strip3.begin();
strip3.show(); // Initialize all pixels to 'off'
strip4.begin();
strip4.show(); // Initialize all pixels to 'off'
strip5.begin();
strip5.show(); // Initialize all pixels to 'off'
// .begin();
//strip6.show(); // Initialize all pixels to 'off'
*/
//alloff(); // turn off all elements
Serial.println("starting");
}
void loop() {
unsigned long lastPacket = DMXSerial.noDataSince();
if (lastPacket < 5000) {
// read recent DMX values and set pwm levels
Channel = DMXSerial.read(DMXA);
Value = DMXSerial.read(DMXB);
delay(10);
}
if ((Channel != oldChannel) || (Value != oldValue)) {
// Serial.print("Ch 1: "); Serial.print(Channel); Serial.print(" Ch 2: "); Serial.println(Value);
//Serial.println("in loop");
/*
if (stringComplete) {
// clear the string:
//effect1(Channel, Value);
Serial.print("BYTE 1: ");Serial.print(inByte[0]);
Serial.print(" BYTE 2: "); Serial.println(inByte[1]);
inputString = "";
stringComplete = false;
}
*/
if (Channel != 0) {
if ((Channel > 0) && (Channel < 11)) {
effect1(Channel, Value);
Serial.println("effect1");
}
if ((Channel > 10) && (Channel < 21)) {
turnoff();
Serial.println("turn off elements");
}
if ((Channel > 20) && (Channel < 31)) {
//effect5();
scroll(Channel, Value);
Serial.println("scroll");
}
if ((Channel > 30) && (Channel < 41)) {
strobe(10, 10);
Serial.println("strobbing");
}
if ((Channel > 40) && (Channel < 51)) {
//theaterChase(strip.Color(127, 127, 127), 50); // White
ripple(Channel, Value);
Serial.println("Ripple");
}
if ((Channel > 50) && (Channel < 61)) {
fadein(Channel, Value);
Serial.println("fadding in ");
}
if ((Channel > 60) && (Channel < 71)) {
fadeout(Channel, Value);
Serial.println("fadding out ");
}
if ((Channel > 70) && (Channel < 81)) {
//tron
effect7(Channel, Value);
/// tron(10);
Serial.println("tron Up ");
}
if ((Channel > 80) && (Channel < 91)) {
//tron
effect8(Channel, Value);
Serial.println("tron down ");
/// tron(10);
}
if ((Channel > 90) && (Channel < 101)) {
//tron
Serial.println("rainbow ");
if ((Channel > 90) && (Channel < 98)) {
rainbow(30);
}
else {
rainbow(Value);
Serial.print("rainbow spd: "); Serial.println(Value);
}
/// tron(10);
}
if ((Channel > 100) && (Channel < 111)) {
effect4(Channel, Value);
}
if ((Channel > 110) && (Channel < 121)) {
colorWipe(Value, 100);
}
if ((Channel > 120) && (Channel < 131)) {
Indy_Pixel(Channel, Value);
}
if (Channel == 255) {
Serial.println("global off ");
for (uint16_t i = 0; i < 60; i++) {
//global all off
strip.setPixelColor(i, 0, 0, 0); //turn every third pixel off
}
strip.show();
}
/*
if ((Channel > 70) && (Channel < 81)) {
effect7(Channel, Value);
}
*/
oldChannel = Channel;
oldValue = Value;
}
}
else {
//Serial.println(" SAME ");
}
}
void Indy_Pixel(uint32_t Ch, uint8_t Val) {
if (Ch == 121){
strip.setPixelColor(Val, strip.Color(REDVALUE, GREENVALUE, BLUEVALUE));
strip.show();
}
if (Ch == 122){
REDVALUE=Val;
}
if (Ch == 123){
GREENVALUE=Val;
}
if (Ch == 124){
BLUEVALUE=Val;
}
if (Ch==128){
globalcolour(Val);
}
}
// Fill the dots one after the other with a color
void colorWipe(uint32_t val, uint8_t wait) {
globalcolour(val);
for (uint16_t i = 80; i > 0; i--) {
strip.setPixelColor(i, strip.Color(REDVALUE, GREENVALUE, BLUEVALUE));
strip.show();
delay(scrollspeed);
}
}
void rainbow(uint8_t wait) {
uint16_t i, j;
for (j = 0; j < 256; j++) {
for (i = 0; i < strip.numPixels(); i++) {
strip.setPixelColor(i, Wheel((i + j) & 255));
}
strip.show();
delay(wait);
}
fadeout(61, 70);
}
//Theatre-style crawling lights.
void theaterChase(uint32_t c, uint8_t wait) {
for (int j = 0; j < 10; j++) { //do 10 cycles of chasing
for (int q = 0; q < 3; q++) {
for (uint16_t i = 0; i < strip.numPixels(); i = i + 3) {
strip.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
strip2.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
strip3.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
strip4.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
strip5.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
// strip6.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
}
strip.show();
strip2.show();
strip3.show();
strip4.show();
strip5.show();
// strip6.show();
delay(wait);
for (uint16_t i = 0; i < strip.numPixels(); i = i + 3) {
strip.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
strip2.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
strip3.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
strip4.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
strip5.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
// strip6.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
}
}
}
}
void ripple(byte ch, byte val ) {
globalcolour(val);
//rIPPLE both front on
for (int j = 0; j < 10; j++) { //do 10 cycles of chasing
for (int q = 0; q < 3; q++) {
for (uint16_t i = 0; i < strip.numPixels(); i = i + 3) {
strip.setPixelColor(i + q, REDVALUE, GREENVALUE, BLUEVALUE); //turn every third pixel on
}
strip.show();
delay(ripplespeed);
for (uint16_t i = 0; i < strip.numPixels(); i = i + 3) {
strip.setPixelColor(i + q, 0, 0, 0); //turn every third pixel off
}
}
}
}
//Theatre-style crawling lights with rainbow effect
void theaterChaseRainbow(uint8_t wait) {
for (int j = 0; j < 256; j++) { // cycle all 256 colors in the wheel
for (int q = 0; q < 3; q++) {
for (uint16_t i = 0; i < 100; i = i + 3) {
strip.setPixelColor(i + q, Wheel( (i + j) % 255)); //turn every third pixel on
}
strip.show();
delay(wait);
for (uint16_t i = 0; i < 100; i = i + 3) {
strip.setPixelColor(i + q, 0); //turn every third pixel off
strip.show();
}
}
}
}
// Input a value 0 to 255 to get a color value.
// The colours are a transition r - g - b - back to r.
uint32_t Wheel(byte WheelPos) {
WheelPos = 255 - WheelPos;
if (WheelPos < 85) {
return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
}
if (WheelPos < 170) {
WheelPos -= 85;
return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
}
WheelPos -= 170;
return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
}
void fadein(byte ch, byte val ) {
globalcolour(val);
int kk = 0;
int r = 0;
int g = 0;
int b = 0;
if ((ch > 50) && (ch < 58)) {
while (kk < 255) { //Front Fade in
if (REDVALUE > kk) {
r++;
} if (GREENVALUE > kk) {
g++;
} if (BLUEVALUE > kk) {
b++;
}
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, r, g, b); //turn every third pixel off
}
strip.show();
delay(fadespeed);
kk++;
}
//Serial.print("rgb: "); Serial.print(r); Serial.print(" "); Serial.print(g); Serial.print(" "); Serial.println(b);
}
if (ch == 58) { // sets the fade on speed
Serial.print("fade on spd: ");
if (val < 5) {
val = 5;
}
if (val > 5) {
fadespeed = val;
}
fadespeed = val;
Serial.println(fadespeed);
}
}
void fadeout(byte ch, byte val ) {
globalcolour(val);
int kk = 255;
int r = REDVALUE;
int g = GREENVALUE;
int b = BLUEVALUE;
if ((ch > 60) && (ch < 68)) {
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, r, g, b); //turn every third pixel off
}
strip.show();
while (kk > 0) { //Front Fade in
if (REDVALUE > kk) {
r--;
} if (GREENVALUE > kk) {
g--;
} if (BLUEVALUE > kk) {
b--;
}
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, r, g, b); //turn every third pixel off
}
strip.show();
delay(fadespeed);
kk--;
}
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, 0, 0, 0); //turn every third pixel off
}
strip.show();
//Serial.print("rgb: "); Serial.print(r); Serial.print(" "); Serial.print(g); Serial.print(" "); Serial.println(b);
}
if (ch == 68) { // sets the fade on speed
Serial.print("fade off spd: ");
if (val < 5) {
val = 5;
}
fadespeed = val;
Serial.println(fadespeed);
}
}
void strobe(int fadespeed, int t) {
if (Channel == 38) {
if (Value < 5) {
strobespeed = 5;
}
else {
strobespeed = Value;
}
}
else {
globalcolour(Value);
}
Serial.print("strobe spd: ");
Serial.println(strobespeed);
//Serial.println("strobe function");
if ((Channel > 30) || (Channel < 37)) { // strobing front
while (t > 0) {
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
}
strip.show();
delay(strobespeed);
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, 0, 0, 0); //turn every pixel off
}
strip.show();
delay(strobespeed);
t--;
}
}
}
/*
SerialEvent occurs whenever a new data comes in the hardware serial RX. This
routine is run between each time loop() runs, so using delay inside loop can
delay response. Multiple bytes of data may be available.
*/
/*
void serialEvent() {
while (Serial.available()) {
// get the new byte:
Channel = Serial.parseInt(); // add it to the inputString:
Serial.print(Channel);
Value = Serial.parseInt();
Serial.print(Value);
if (Serial.read() == '\n') {
// if the incoming character is a newline, set a flag so the main loop can
// do something about it:
stringComplete = true;
}
}
while (Serial1.available()) {
// get the new byte:
Channel = Serial1.parseInt(); // add it to the inputString:
Serial.print(Channel);
Value = Serial1.parseInt();
Serial.print(Value);
if (Serial1.read() == '\n') {
// if the incoming character is a newline, set a flag so the main loop can
// do something about it:
stringComplete = true;
}
}
}
*/
void globalcolour(byte Colour_val) {
if (0 <= Colour_val && Colour_val <= 5) { // all colours off
REDVALUE = 0;
GREENVALUE = 0;
BLUEVALUE = 0;
}
if (5 < Colour_val && Colour_val <= 16) { //purple
REDVALUE = 150; //was 128
GREENVALUE = 0; //was 0
BLUEVALUE = 150; //was 255
}
if (17 <= Colour_val && Colour_val <= 32) { //deep blue
REDVALUE = 0;
GREENVALUE = 10;
BLUEVALUE = 255;
}
if (33 <= Colour_val && Colour_val <= 64) { //cyan
REDVALUE = 0;
GREENVALUE = 200;
BLUEVALUE = 200;
}
if (65 <= Colour_val && Colour_val <= 87) { //red
REDVALUE = 200;
GREENVALUE = 0;
BLUEVALUE = 0;
}
if (88 <= Colour_val && Colour_val <= 119) { //green
REDVALUE = 0;
GREENVALUE = 200;
BLUEVALUE = 0;
}
if (120 <= Colour_val && Colour_val <= 151) { //orange
REDVALUE = 230;
GREENVALUE = 50;
BLUEVALUE = 0;
}
if (152 <= Colour_val && Colour_val <= 183) { //pink
REDVALUE = 255;
GREENVALUE = 40;
BLUEVALUE = 128;
}
if (184 <= Colour_val && Colour_val <= 200) { //yellow
REDVALUE = 255;
GREENVALUE = 128;
BLUEVALUE = 0;
}
if (201 <= Colour_val && Colour_val <= 216) { //WHITE
REDVALUE = 255;
GREENVALUE = 153;
BLUEVALUE = 128;
}
if (201 <= Colour_val && Colour_val <= 216) { //WHITE
// REDVALUE = 255;
// GREENVALUE = 153;
// BLUEVALUE = 128;
REDVALUE = 100;
GREENVALUE = 60;
BLUEVALUE = 40;
}
////////Serial.print("REDVALUE :"); ////////Serial.println(REDVALUE);
////////Serial.print("GREENVALUE :"); ////////Serial.println(GREENVALUE);
////////Serial.print("BLUEVALUE :"); ////////Serial.println(BLUEVALUE);
}
void effect4(byte ch, byte val ) {
//threater fx
globalcolour(val);
theaterChaseRainbow(10);
}
void effect7(byte ch, byte val ) {
//tron bottom to top
globalcolour(val);
if ((ch > 70) && (ch < 78)) { // Serial.println("tron 71 ");
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
strip.setPixelColor(i + 1, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
strip.setPixelColor(i + 2, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
strip.setPixelColor(i - 1, 0, 0, 0); //turn everypixel off
//strip6.setPixelColor(i - 1, 0, 0, 0); //turn everypixel off
strip.show();
delay(tronspeed);
}
delay(tronspeed);
alloff();
}
if (ch == 78) { // sets the scroll speed
Serial.print("tron spd: ");
Serial.println(val);
tronspeed = val;
}
}
void effect8(byte ch, byte val ) {
//tron bottom to top
globalcolour(val);
if ((ch > 80) && (ch < 88)) { // Serial.println("tron 81 ");
for (uint16_t i = 80; i > 0; i--) {
strip.setPixelColor(i, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
strip.setPixelColor(i - 1, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
strip.setPixelColor(i - 2, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
strip.setPixelColor(i , 0, 0, 0); //turn everypixel off
strip.show();// strip6.show();//strip4.show();
delay(tronspeed);
}
delay(tronspeed);
alloff();
}
if (ch == 88) { // sets the scroll speed
Serial.print("tron spd: ");
Serial.println(val);
tronspeed = val;
}
}
void effect1(byte ch, byte val ) {
globalcolour(val);
//FADEON both front on
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, REDVALUE, GREENVALUE, BLUEVALUE); //turn everypixel off
}
strip.show();
}
void scroll(byte ch, byte val ) {
globalcolour(val);
//scroll both front on
// colorWipe(strip.Color(REDVALUE, GREENVALUE, BLUEVALUE), scrollspeed); // Red
for (uint16_t i = 0; i < 80; i++) {
strip.setPixelColor(i, strip.Color(REDVALUE, GREENVALUE, BLUEVALUE));
strip.show();
delay(scrollspeed);
}
}
void effect5( void) {
//fadeon effect 5
Serial.println(" effect5");
//alloff();
byte fadespeed = Value;
byte kk = 0;
switch (Channel) {
case 21: // your hand is on the sensor
//FADEON bOTH fRONT
while (kk < 200) {
for (uint16_t i = 0; i < 40; i++) {
strip3.setPixelColor(i, 0, kk, kk); //turn every third pixel off
}
strip3.show();
delay(fadespeed);
kk++;
}
break;
case 22: // your hand is close to the sensor
//FADEON both front
while (kk < 200) {
for (uint16_t i = 0; i < 40; i++) {
strip3.setPixelColor(i, 0, kk, kk); //turn every third pixel off
}
strip3.show();
delay(fadespeed);
kk++;
}
break;