charlie-cube/config.h
2022-04-06 21:35:35 -04:00

12 lines
170 B
C

// state machine
// List animations here
typedef enum STATE {
CHASETHEDOT,
RANDOMRAINBOW,
PLANARFLOP3D
};
STATE currentState, lastState;
bool timerReset = true;