-
Notifications
You must be signed in to change notification settings - Fork 10
/
MEORandomStrobe.h
40 lines (32 loc) · 1.18 KB
/
MEORandomStrobe.h
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
/*
G35: An Arduino library for GE Color Effects G-35 holiday lights.
Copyright © 2012 The G35 Authors. Use, modification, and distribution are
subject to the BSD license as described in the accompanying LICENSE file.
By Mike Tsao <http://github.com/sowbug>.
and Mark Ortiz
See README for complete attributions.
*/
#ifndef INCLUDE_G35_PROGRAMS_MEO_RANDOM_STROBE_H
#define INCLUDE_G35_PROGRAMS_MEO_RANDOM_STROBE_H
#include <MEOLightProgram.h>
class MEORandomStrobe : public MEOLightProgram
{
public:
MEORandomStrobe(MEOG35& g35, uint8_t pattern);
uint32_t Do();
uint32_t Wheel(uint16_t WheelPos);
private:
bool preFill_;
bool strobe_;
uint8_t wait_;
uint8_t noAtATime_;
uint32_t colorMain_;
uint32_t colorFlash_;
bool rainbowFlash_; //instead of single strobe color, will cycle through colour wheel
bool rainbowMain_; //instead of single background color, will cycle through colour wheel (complimentary colour to flash)
bool rainbowFrame_; //if rainbow flash, then whether cycles colour after all bulbs flashed or with each bulb flashed
uint8_t step_;
uint8_t myBulb_;
uint8_t pattern_;
};
#endif