-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEgg_test.ino
465 lines (365 loc) · 11.3 KB
/
Egg_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
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
#include <Adafruit_DotStar.h>
#include <arduino-timer.h>
#include <PinButton.h>
#include <Adafruit_FreeTouch.h>
#define STRIP_LENGTH 256
#define PIXELS_CNT 35 // pixelsMinMax[1]
#define BUTTON_SWITCH 3
#define NEOPIXEL_DATA 1
#define BUTTON_TOUCH 5
#define DOTSTAR_DATA 41
#define DOTSTAR_CLK 40
byte pixelCurrentMode = 3; // [0 - no flash, 1 - flash, 2 - only flash, 3 - RGB]
Adafruit_FreeTouch buttonTouch = Adafruit_FreeTouch(BUTTON_TOUCH, OVERSAMPLE_4, RESISTOR_50K, FREQ_MODE_NONE);
PinButton buttonSwitch(BUTTON_SWITCH);
Adafruit_DotStar onboardDotStarLed(1, DOTSTAR_DATA, DOTSTAR_CLK, DOTSTAR_BGR);
Adafruit_DotStar strip(STRIP_LENGTH, DOTSTAR_BRG);
auto timer = timer_create_default();
const byte stripTopStart = 251;
const byte stripTopColumnStart = 174;
const byte pixelRGBColor[] = {189, 120, 34};
const byte pixelSpeedHigh[2] = {100, 90};
const byte pixelSpeedMedium[2] = {70, 50};
const byte pixelSpeedLow[2] = {50, 40};
const byte pixelSpeedDelayInit = 2; // timeout po touch eventu [s]
const byte pixelSpeedDelayStep = 10; // timeout mezi kroky [s]
const byte pixelsMinMax[] = {25, 36}; // pocet pixelu najednou (min a max interval)
const word stripCurrentModeTimer[] = {30, 300}; // [s] interval pro random mode timer
const byte stripPixelsFlash[] = {0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; // pocet pixelu na zablesk
const byte stripPixelsFlashLength = 15;
const byte flashTimesMinMax[] = {1, 7}; // kolikrat se ma bliknout
const byte stripPixelsFlashStartIndex = 5; // index alespon 1x zablesk
const byte stripFlashTimer[] = {15, 60}; // [s] interval pro random flash timer
const byte pixelWaitCycles = 15; // prodleva pixelu na mbr pro mode 1 a 2 [pocet cyklu]
typedef struct EggPixel
{
byte timer = 0;
byte status = 0;
word position = 0;
float currentBrightness = 0;
float stepChangeBrightness = 0;
bool maxBrightnessHigh = false;
int maxBrightness = 0;
byte flashTimes = 0;
byte rgb[3];
} EggPixel;
EggPixel pixels[PIXELS_CNT];
word buttonTouchCoef = 0;
word stripCurrentModeTimerSet = 30;
bool pixelSpeedTrigger = false;
bool pixelRGBColorChange = false;
bool timer1Trigger = true;
byte pixelsCntActive = 0;
byte stripFlash = 0;
byte stripFlashTotal = 0;
byte stripFlashTimerSet = 15;
word stripFreePositions[STRIP_LENGTH];
byte pixelSpeedIndex = 0;
unsigned long pixelSpeedTimer = 0;
byte pixelSpeedDelay = 0;
byte pixelDifferentBrightness = 0;
byte pixelsCntCurrent = 0;
byte pixelDifferentBrightnesses = 0;
byte pixelCurrentSpeed[2];
word stripLengthCurrent = stripTopStart;
void adjustValByStep(byte *varToAdjust, const byte minMaxArr[], byte adjustStep = 3)
{
if (varToAdjust == 0) {
*varToAdjust = random(minMaxArr[0], minMaxArr[1]);
return;
}
byte currentStep = random(adjustStep);
if (random(11) > 4) {
*varToAdjust = *varToAdjust + currentStep;
} else {
*varToAdjust = *varToAdjust - currentStep;
}
if (*varToAdjust > minMaxArr[1] - 1) {
*varToAdjust = minMaxArr[1] - 1;
return;
}
if (*varToAdjust < minMaxArr[0]) {
*varToAdjust = minMaxArr[0];
return;
}
}
void setPixelCurrentSpeed(const byte pixelSpeed[])
{
pixelCurrentSpeed[0] = pixelSpeed[0];
pixelCurrentSpeed[1] = pixelSpeed[1];
}
void pixelProcess(EggPixel &eggPixel)
{
if (eggPixel.timer > 0) {
if (eggPixel.timer > pixelWaitCycles) {
eggPixel.status = 2;
eggPixel.timer = 0;
} else {
eggPixel.timer++;
}
}
if (eggPixel.status == 1) {
eggPixel.currentBrightness += eggPixel.stepChangeBrightness;
if (eggPixel.currentBrightness > eggPixel.maxBrightness) {
eggPixel.currentBrightness = eggPixel.maxBrightness;
}
if (eggPixel.currentBrightness == eggPixel.maxBrightness) {
eggPixel.timer = 1;
eggPixel.status = 3;
}
} else {
eggPixel.currentBrightness -= eggPixel.stepChangeBrightness;
if (eggPixel.currentBrightness < 0) {
eggPixel.currentBrightness = 0;
}
}
if (eggPixel.flashTimes > 0) {
if ((eggPixel.currentBrightness == eggPixel.maxBrightness) || (eggPixel.status == 2)) {
if (pixelCurrentMode == 3) {
strip.setPixelColor(
eggPixel.position,
strip.Color(
eggPixel.rgb[0],
eggPixel.rgb[1],
eggPixel.rgb[2]
)
);
} else {
byte flashColors[3];
byte flashColorsCoef = random(1, 4);
flashColors[0] = round(255 / flashColorsCoef);
flashColors[1] = round(162 / flashColorsCoef);
flashColors[2] = round(46 / flashColorsCoef);
strip.setPixelColor(
eggPixel.position,
strip.Color(flashColors[0], flashColors[1], flashColors[2])
);
}
strip.show();
eggPixel.flashTimes--;
}
}
strip.setPixelColor(
eggPixel.position,
strip.Color(
eggPixel.rgb[0] * eggPixel.currentBrightness / 255,
eggPixel.rgb[1] * eggPixel.currentBrightness / 255,
eggPixel.rgb[2] * eggPixel.currentBrightness / 255
)
);
if ((eggPixel.currentBrightness == 0) && (eggPixel.status == 2)) {
pixelsCntActive--;
if (eggPixel.maxBrightnessHigh) {
pixelDifferentBrightness--;
}
eggPixel.flashTimes = 0;
eggPixel.status = 0;
stripFreePositions[eggPixel.position] = eggPixel.position;
}
}
void pixelCreate(EggPixel &eggPixel)
{
if (pixelsCntActive < pixelsCntCurrent) {
pixelsCntActive++;
do {
eggPixel.position = stripFreePositions[random(stripLengthCurrent)];
} while (eggPixel.position == 500);
stripFreePositions[eggPixel.position] = 500;
eggPixel.maxBrightness = random(51, 87);
eggPixel.maxBrightnessHigh = false;
if (pixelDifferentBrightness < pixelDifferentBrightnesses) {
eggPixel.maxBrightness = random(170, 256);
eggPixel.maxBrightnessHigh = true;
pixelDifferentBrightness++;
}
if ((pixelCurrentMode > 0) && (stripFlash < stripFlashTotal)) {
eggPixel.flashTimes = random(flashTimesMinMax[0], flashTimesMinMax[1] + 1);
stripFlash++;
if (stripFlash == stripFlashTotal) {
stripFlashTotal = 0;
stripFlash = 0;
}
}
if ((eggPixel.position >= stripTopColumnStart) && (eggPixel.maxBrightness > 65)) {
eggPixel.maxBrightness = 65;
}
if ((eggPixel.position >= stripTopStart) && (eggPixel.maxBrightness > 40)) {
eggPixel.maxBrightness = 40;
}
if (pixelSpeedIndex > 0) {
eggPixel.maxBrightness += 40;
}
if ((pixelCurrentMode == 2) && (pixelSpeedIndex == 0)) {
eggPixel.stepChangeBrightness = 0;
eggPixel.maxBrightness = 0;
} else {
float rnd = random(round(eggPixel.maxBrightness / pixelCurrentSpeed[0]), round(eggPixel.maxBrightness / pixelCurrentSpeed[1]));
if (rnd <= 0) {
rnd = 0.5;
}
eggPixel.stepChangeBrightness = rnd;
}
if (pixelRGBColorChange) {
eggPixel.rgb[0] = random(0, 256);
eggPixel.rgb[1] = random(0, 256);
eggPixel.rgb[2] = random(0, 256);
pixelRGBColorChange = false;
}
if (eggPixel.maxBrightness > 255) {
eggPixel.maxBrightness = 255;
}
eggPixel.currentBrightness = 0;
eggPixel.timer = 0;
eggPixel.status = 1;
}
}
bool eventTimer3(void *)
{
if (pixelCurrentMode == 3 && !pixelRGBColorChange) {
pixelRGBColorChange = true;
}
return true;
}
bool eventTimer2(void *)
{
if (pixelSpeedIndex == 0) {
adjustValByStep(&pixelsCntCurrent, pixelsMinMax);
pixelDifferentBrightnesses = round(pixelsCntCurrent / 5);
stripCurrentModeTimerSet = random(stripCurrentModeTimer[0], stripCurrentModeTimer[1]);
}
return true;
}
bool eventTimer1(void *)
{
if (timer1Trigger && stripFlash == 0 && pixelCurrentMode > 0) {
stripFlashTotal = stripPixelsFlash[random(0, stripPixelsFlashLength)];
stripFlashTimerSet = random(stripFlashTimer[0], stripFlashTimer[1]);
}
return true;
}
void stripReset(EggPixel pixels[])
{
strip.clear();
setPixelCurrentSpeed(pixelSpeedHigh);
adjustValByStep(&pixelsCntCurrent, pixelsMinMax);
pixelDifferentBrightnesses = round(pixelsCntCurrent / 5);
pixelDifferentBrightness = 0;
stripFlashTotal = 0;
stripFlash = 0;
pixelsCntActive = 0;
word b = 0;
while (b < PIXELS_CNT) {
pixels[b] = EggPixel();
pixels[b].rgb[0] = (pixelCurrentMode == 3) ? random(0, 256) : pixelRGBColor[0];
pixels[b].rgb[1] = (pixelCurrentMode == 3) ? random(0, 256) : pixelRGBColor[1];
pixels[b].rgb[2] = (pixelCurrentMode == 3) ? random(0, 256) : pixelRGBColor[2];
b++;
}
b = 0;
while (b < STRIP_LENGTH) {
stripFreePositions[b] = b;
b++;
}
}
void setup()
{
// onboard red LED
pinMode(13, OUTPUT);
digitalWrite(13, LOW);
randomSeed(analogRead(BUTTON_TOUCH));
// touch
buttonTouch.begin();
// timers
timer.every(15 * 1000, eventTimer3);
timer.every(stripCurrentModeTimerSet * 1000, eventTimer2);
timer.every(stripFlashTimerSet * 1000, eventTimer1);
// onboard DotStar pixel
onboardDotStarLed.begin();
onboardDotStarLed.show();
onboardDotStarLed.setBrightness(64);
onboardDotStarLed.setPixelColor(0, onboardDotStarLed.Color(0, 0, 255));
onboardDotStarLed.show();
strip.begin();
strip.show();
strip.setBrightness(255);
stripReset(pixels);
}
void loop()
{
buttonTouchCoef = buttonTouch.measure();
timer.tick();
buttonSwitch.update();
// short click
if (buttonSwitch.isSingleClick()) {
stripLengthCurrent = (stripLengthCurrent == STRIP_LENGTH) ? stripTopStart : STRIP_LENGTH;
stripReset(pixels);
}
// long click
if (buttonSwitch.isLongClick()) {
if (pixelCurrentMode == 3) {
pixelCurrentMode = 0;
} else {
pixelCurrentMode++;
}
switch (pixelCurrentMode) {
case 0:
onboardDotStarLed.setPixelColor(0, onboardDotStarLed.Color(0, 255, 0));
break;
case 1:
onboardDotStarLed.setPixelColor(0, onboardDotStarLed.Color(255, 0, 0));
break;
case 2:
onboardDotStarLed.clear();
break;
case 3:
onboardDotStarLed.setPixelColor(0, onboardDotStarLed.Color(0, 0, 255));
break;
}
onboardDotStarLed.show();
stripReset(pixels);
}
// touch event
if (buttonTouchCoef > 500) {
if (pixelSpeedIndex == 0) {
digitalWrite(13, HIGH);
pixelSpeedTimer = millis();
pixelSpeedTrigger = true;
pixelSpeedDelay = pixelSpeedDelayInit;
// prevent timer 1 event
timer1Trigger = false;
}
}
if (pixelSpeedTrigger || (pixelSpeedIndex > 0)) {
if ((millis() - pixelSpeedTimer) > (pixelSpeedDelay * 1000)) {
if (pixelSpeedTrigger) {
pixelSpeedTrigger = false;
pixelSpeedDelay = pixelSpeedDelayStep;
if (stripFlash == 0) {
stripFlashTotal = stripPixelsFlash[random(stripPixelsFlashStartIndex, stripPixelsFlashLength)];
}
}
if (pixelSpeedIndex == 0) {
setPixelCurrentSpeed(pixelSpeedLow);
pixelSpeedIndex = 1;
} else if (pixelSpeedIndex == 1) {
setPixelCurrentSpeed(pixelSpeedMedium);
pixelSpeedIndex = 2;
} else {
setPixelCurrentSpeed(pixelSpeedHigh);
pixelSpeedIndex = 0;
// restore timer 1 event
timer1Trigger = true;
digitalWrite(13, LOW);
}
pixelSpeedTimer = millis();
}
}
for (byte cnt = 0; cnt < PIXELS_CNT; cnt++) {
if (pixels[cnt].status > 0) {
pixelProcess(pixels[cnt]);
} else {
pixelCreate(pixels[cnt]);
}
}
strip.show();
}