From cea3f991a8e0ac00552758d21782a4bd814d08d0 Mon Sep 17 00:00:00 2001 From: Quinn <31545331+Cynopolis@users.noreply.github.com> Date: Thu, 12 Sep 2024 09:10:04 -0400 Subject: [PATCH] Re-enabled rotating animation --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 91f810b..3bc6e98 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,9 +31,9 @@ TaskHandle_t updateCommunicaitonTask; TaskHandle_t updateBoardTask; // WARNING! This array size should always be equal to the number of entries in it!! -std::array*, 1> animations = { +std::array*, 2> animations = { &RisingCubes::rising, - // &RotatingCubes::rotating, + &RotatingCubes::rotating, }; // BluetoothSerial SerialBT; @@ -232,4 +232,4 @@ void setup() { void loop() { // delete the loop task because we don't use it vTaskDelete(NULL); -} \ No newline at end of file +}