19 lines
350 B
C
19 lines
350 B
C
#ifndef effects_H
|
|
#define effects_H
|
|
|
|
#include <SimpleList.h>
|
|
#include "Effect.h"
|
|
#include "effect_clock.h"
|
|
|
|
extern const char* cycle_effects[];
|
|
extern uint8_t cycle_effects_count;
|
|
|
|
extern Effect* current_effect;
|
|
extern ClockEffect effect_clock;
|
|
|
|
Effect* string_to_effect(String s);
|
|
bool change_current_effect(String s);
|
|
void setup_effects();
|
|
|
|
#endif
|