-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHL1606.cpp
executable file
·180 lines (154 loc) · 5.17 KB
/
HL1606.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
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
/* Copyright 2010 Jason Wolfe. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY JASON WOLFE ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JASON WOLFE OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Jason Wolfe.
*
* Based on code provided by Microcontrollersandmore.com
*/
#include "HL1606.h"
HL1606::HL1606(unsigned int S, unsigned int D, unsigned int C, unsigned int L, unsigned int LEDCount)
{
_S = S;
_D = D;
_L = L;
_C = C;
_LEDCount = LEDCount;
_ClockWait = 1;
// Should be (LEDCount * 250)/1000, but this seems to suffice for 200 LEDs.
pinMode(_S, OUTPUT);
pinMode(_D, OUTPUT);
pinMode(_C, OUTPUT);
pinMode(_L, OUTPUT);
digitalWrite(_S, LOW);
digitalWrite(_D, LOW);
digitalWrite(_L, LOW);
digitalWrite(_C, LOW);
}
void HL1606::sendByte(unsigned char it)
{
//Send out one byte, don't forget to LATCH it by calling
//Note that for LARGE number of LEDs you may need to slow things down a little here.
shiftOut(_D, _C, MSBFIRST, it);
// digitalWrite(_C, LOW);
//
// char x;
// for(x=0;x < 8; x++)
// {
// if(B10000000 & it)
// digitalWrite(_D, HIGH);
// else
// digitalWrite(_D, LOW);
// it = it<<1;
// // Wait here needs to be 250 x Number of LEDs nano seconds to allow data to propagate before being clocked in
// delayMicroseconds(_ClockWait);
// digitalWrite(_C, HIGH);
// digitalWrite(_C, LOW);
//
// }
}
void HL1606::latch()
{
digitalWrite(_L, HIGH);
delayMicroseconds(1);
digitalWrite(_L, LOW);
}
void HL1606::fade()
{
unsigned int fadeDelay = 250;
digitalWrite(_S, HIGH);
delayMicroseconds(fadeDelay);
digitalWrite(_S, LOW);
delayMicroseconds(fadeDelay);
}
void HL1606::fades(unsigned int y, unsigned int d)
{
//Pulse the fader y times with delay d microseconds between each pulse
int x;
for(x=0;x<y;x++)
{
digitalWrite(_S, HIGH);
delayMicroseconds(d);
digitalWrite(_S, LOW);
delayMicroseconds(d);
}
}
void HL1606::sendRing(unsigned char *buffer, int start, int len, int n) {
unsigned int i;
for(i=0; i < n; i++) {
while (start >= len) start -= len;
sendByte(buffer[start]);
start++;
}
}
void HL1606::sendBackwardRing(unsigned char *buffer, int start, int len, int n) {
unsigned int i;
start = (start + n - 1) % len;
for(i=0; i < n; i++) {
while (start < 0) start += len;
sendByte(buffer[start]);
start--;
}
}
void HL1606::setAll(unsigned char command) {
unsigned int a;
for(a = 0; a < _LEDCount; a++) {
sendByte(command);
}
latch();
}
void HL1606::setOne(unsigned int led, unsigned char command, unsigned char background) {
unsigned int a;
for(a = led+1; a < _LEDCount; a++) sendByte(background);
sendByte(command);
for(a = 0; a < led; a++) sendByte(background);
latch();
}
void HL1606::setRing(unsigned char *buffer, int start, int len) {
sendRing(buffer, start, len, _LEDCount);
latch();
}
void HL1606::setBackwardRing(unsigned char *buffer, int start, int len) {
sendBackwardRing(buffer, start, len, _LEDCount);
latch();
}
// Set all LEDs by cycling through 'buffer', starting at 'start'
void HL1606::setFadedRing(unsigned char *buffer, unsigned char *nFades, int start, int len) {
int maxF = 0;
for(unsigned int i=0; i < len; i++) if (nFades[i] > maxF) maxF = nFades[i];
setAll(Command);
while(maxF >= 0) {
fades(1,250);
boolean found = false;
for(unsigned int i=0; i < len; i++) {
if (nFades[i] == maxF) found = true;
}
if(found) {
for(unsigned int i=0; i < _LEDCount; i++) {
unsigned int ind = (start + i) % len;
sendByte(nFades[ind] == maxF ? buffer[ind] : Noop);
}
latch();
}
maxF--;
}
}