-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTeamColor.cpp
388 lines (380 loc) · 9.89 KB
/
TeamColor.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
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
#include <FastLED.h>
#include "Arduino.h"
#include "TeamColor.h"
TeamColor getMainColor(int teamID) {
TeamColor ret;
switch (teamID) {
// case 0: {// Name
// ret.nColors = 3;
// ret.colors[0] = CRGB::Black;
// ret.colors[1] = CRGB::Black;
// ret.colors[2] = CRGB::Black;
// break;
// }
/**************** La Liga ****************/
case 81: {// Barcelona
ret.nColors = 3;
ret.colors[0] = CRGB::Brown;
ret.colors[1] = CRGB::Blue;
ret.colors[2] = CRGB::Red;
break;
}
case 95: {// Valencia
ret.nColors = 4;
ret.colors[0] = CRGB::Black;
ret.colors[1] = CRGB::Red;
ret.colors[2] = CRGB::White;
ret.colors[3] = CRGB::Yellow;
break;
}
case 78: {// Club Atlético de Madrid
ret.nColors = 3;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Red;
ret.colors[2] = CRGB::Blue;
break;
}
case 86: {// Real Madrid CF
ret.nColors = 1;
ret.colors[0] = CRGB::White;
break;
}
case 559: {// Sevilla FC
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Red;
break;
}
case 94: {// Villarreal CF
ret.nColors = 1;
ret.colors[0] = CRGB::Yellow;
break;
}
case 82: {// Getafe CF
ret.nColors = 1;
ret.colors[0] = CRGB::Blue;
break;
}
case 745: {// CD Leganes
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Blue;
break;
}
case 298: {// Girona FC
ret.nColors = 1;
ret.colors[0] = CRGB::White;
break;
}
case 92: {// Real Sociedad de Fútbol
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Blue;
break;
}
case 558: {// RC Celta de Vigo
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::SkyBlue;
break;
}
case 90: {// Real Betis
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Green;
break;
}
case 278: {// SD Eibar
ret.nColors = 1;
ret.colors[0] = CRGB::Blue;
break;
}
case 77: {// Athletic Club Bilbao
ret.nColors = 3;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::Black;
ret.colors[2] = CRGB::White;
break;
}
case 88: {// Levante UD
ret.nColors = 2;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::Red;
break;
}
case 80: {// RCD Espanyol
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Blue;
break;
}
case 560: {// RC Deportivo La Coruna
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Blue;
break;
}
case 263: {// Deportivo Alavés
ret.nColors = 1;
ret.colors[0] = CRGB::White;
break;
}
case 84: {// Málaga CF
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Blue;
break;
}
case 275: {// UD Las Palmas
ret.nColors = 2;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::Yellow;
break;
}
case 250: {// Real Valladolid CF
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Purple;
break;
}
case 87: {// Rayo Vallecano de Madrid
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Red;
break;
}
case 299: {// SD Huesca
ret.nColors = 2;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::Red;
break;
}
/**************** World Cup 2018 ****************/
/*
case 808: {// Russia
ret.nColors = 3;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Blue;
ret.colors[2] = CRGB::Red;
break;
}
case 801: {// Saudi Arabia
ret.nColors = 2;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::White;
break;
}
case 825: {// Egypt
ret.nColors = 3;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Black;
break;
}
case 758: {// Uruguay
ret.nColors = 3;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Yellow;
break;
}
case 815: {// Morocco
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::Green;
break;
}
case 840: {// Iran
ret.nColors = 3;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Red;
break;
}
case 765: {// Portugal
ret.nColors = 3;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::Red;
ret.colors[2] = CRGB::Yellow;
break;
}
case 760: {// Spain
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::Yellow;
break;
}
case 773: {// France
ret.nColors = 3;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Red;
break;
}
case 779: {// Australia
ret.nColors = 3;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Red;
break;
}
case 832: {// Peru
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
break;
}
case 782: {// Denmark
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
break;
}
case 762: {// Argentina
ret.nColors = 3;
ret.colors[0] = CRGB::LightBlue;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Yellow;
break;
}
case 1066: {// Iceland
ret.nColors = 3;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Red;
break;
}
case 799: {// Croatia
ret.nColors = 3;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Blue;
break;
}
case 776: {// Nigeria
ret.nColors = 2;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::White;
break;
}
case 793: {// Costa Rica
ret.nColors = 3;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Red;
break;
}
case 780: {// Serbia
ret.nColors = 3;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::Blue;
ret.colors[2] = CRGB::White;
break;
}
case 764: {// Brazil
ret.nColors = 3;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::Yellow;
ret.colors[2] = CRGB::Blue;
break;
}
case 788: {// Switzerland
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
break;
}
case 759: {// Germany
ret.nColors = 3;
ret.colors[0] = CRGB::Black;
ret.colors[1] = CRGB::Red;
ret.colors[2] = CRGB::Yellow;
break;
}
case 769: {// Mexico
ret.nColors = 3;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::White;
ret.colors[2] = CRGB::Red;
break;
}
case 792: {// Sweden
ret.nColors = 2;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::Yellow;
break;
}
case 772: {// Korea Republic
ret.nColors = 3;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::Blue;
ret.colors[2] = CRGB::White;
break;
}
case 805: {// Belgium
ret.nColors = 3;
ret.colors[0] = CRGB::Black;
ret.colors[1] = CRGB::Yellow;
ret.colors[2] = CRGB::Red;
break;
}
case 1836: {// Panama
ret.nColors = 3;
ret.colors[0] = CRGB::Blue;
ret.colors[1] = CRGB::Red;
ret.colors[2] = CRGB::White;
break;
}
case 802: {// Tunisia
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
break;
}
case 770: {// England
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Red;
break;
}
case 794: {// Poland
ret.nColors = 2;
ret.colors[0] = CRGB::Red;
ret.colors[1] = CRGB::White;
break;
}
case 804: {// Senegal
ret.nColors = 3;
ret.colors[0] = CRGB::Green;
ret.colors[1] = CRGB::Yellow;
ret.colors[2] = CRGB::Red;
break;
}
case 818: {// Colombia
ret.nColors = 3;
ret.colors[0] = CRGB::Yellow;
ret.colors[1] = CRGB::Blue;
ret.colors[2] = CRGB::Red;
break;
}
case 766: {// Japan
ret.nColors = 2;
ret.colors[0] = CRGB::White;
ret.colors[1] = CRGB::Red;
break;
}
*/
/**************** Control ****************/
case 0: { // Turn off lights
ret.nColors = 1;
ret.colors[0] = CRGB::Black;
break;
}
default: { // Error
ret.nColors = 1;
ret.colors[0] = CRGB::Red;
break;
}
}
return ret;
}