2019-05-29 22:49:54 +00:00
|
|
|
#ifndef effects_H
|
|
|
|
#define effects_H
|
|
|
|
|
|
|
|
#include <SimpleList.h>
|
|
|
|
#include "Effect.h"
|
|
|
|
#include "effect_clock.h"
|
|
|
|
|
2019-06-18 16:14:59 +00:00
|
|
|
extern const char* cycle_effects[];
|
|
|
|
extern uint8_t cycle_effects_count;
|
2019-05-29 22:49:54 +00:00
|
|
|
|
|
|
|
extern Effect* current_effect;
|
|
|
|
extern ClockEffect effect_clock;
|
|
|
|
|
2019-06-19 20:26:38 +00:00
|
|
|
Effect* select_effect(uint32_t c);
|
2019-06-18 16:14:59 +00:00
|
|
|
bool change_current_effect(String s);
|
2019-05-29 22:49:54 +00:00
|
|
|
void setup_effects();
|
|
|
|
|
|
|
|
#endif
|