-
Notifications
You must be signed in to change notification settings - Fork 24
/
MEOPrograms.h
33 lines (26 loc) · 953 Bytes
/
MEOPrograms.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
/*
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>.
Programs referenced in MEOPrograms by Mark Ortiz <github.com/MarkEMarkEMark>.
See README for complete attributions.
*/
#ifndef INCLUDE_G35_MEO_PROGRAMS_H
#define INCLUDE_G35_MEO_PROGRAMS_H
#include <LightProgram.h>
/* #include <Chasing.h> */
/* #include <ColorPhasing.h> */
/* #include <Dither.h> */
/* #include <Oscillate.h> */
#include <Rainbow.h>
/* #include <RandomStrobe.h> */
/* #include <SimplexNoise.h> */
/* #include <SineWave.h> */
/* #include <Whites.h> */
class MEOProgramGroup : public LightProgramGroup {
public:
enum { ProgramCount = 9 };
virtual LightProgram* CreateProgram(G35& lights, uint8_t program_index);
};
#endif // INCLUDE_G35_MEO_PROGRAMS_H