add shift_squares animation

This commit is contained in:
Sean 2022-04-16 22:22:26 -04:00
parent 0a36308aa9
commit a9ff478c8e
3 changed files with 7 additions and 2 deletions

View file

@ -15,7 +15,7 @@ void setup() {
lastState = -1;
// how many secconds until the animation is told to progress
animationMax = 10;
animationMax = 90;
}
void loop() {
@ -34,6 +34,10 @@ void loop() {
tunnel();
break;
case SHIFTSQUARES:
shift_squares();
break;
case RAINBOWCORNER:
rainbow_corner();
break;