charlie-cube/config.h
2022-04-14 20:26:43 -04:00

14 lines
197 B
C

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