charlie-cube/config.h
2022-04-16 22:22:26 -04:00

15 lines
213 B
C

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