-
Notifications
You must be signed in to change notification settings - Fork 7
/
output_test.ino
86 lines (62 loc) · 2.07 KB
/
output_test.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
/*
DMX_LED_Strips - Output Test
Copyright (c) 2015, Matthew Tong
https://github.com/mtongnz/DMX_LED_Strips
http://www.instructables.com/id/DMX-LED-Strips/
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/
This sketch tests the RGB outputs.
It sets all red for 1 second, blue 1 second, green 1 second. Finally white for 3 seconds and repeat.
Library Used:
ShiftPWM by Elco Jacobs. www.elcojacobs.com
*/
const int ShiftPWM_latchPin=8;
const bool ShiftPWM_invertOutputs = false;
const bool ShiftPWM_balanceLoad = true;
#include <ShiftPWM.h>
unsigned char maxBrightness = 255;
unsigned char pwmFrequency = 125;
unsigned int numRegisters = 2;
unsigned int numOutputs = numRegisters*8;
const int numRGB = 5;
void setup(){
int x;
// Setup PWM output
ShiftPWM.SetAmountOfRegisters(numRegisters);
ShiftPWM.Start(pwmFrequency,maxBrightness);
// set all channels to 0 default
ShiftPWM.SetAll(0);
}
void loop() {
int x, y, z;
ShiftPWM.SetAll(0);
//delay(1000);
for (y = 0; y < 3; y++) {
for (x = 0; x <= 255; x++) {
//ShiftPWM.SetAll(x);
for (z = 0; z < numRGB; z++)
ShiftPWM.SetOne((z*3) + y, x);
delay(3);
}
for (x = 255; x >= 0; x--) {
//ShiftPWM.SetAll(x);
for (z = 0; z < numRGB; z++)
ShiftPWM.SetOne((z*3) + y, x);
delay(2);
}
}
return;
for (x = 0; x < 3; x++) {
for (y = 0; y< numRGB; y++)
ShiftPWM.SetOne((y*3) +x, 255);
delay(1000);
ShiftPWM.SetAll(0);
}
ShiftPWM.SetAll(255);
delay(3000);
}