- First complete version of firmware. Currently being tested in the rehearsal room

- Added bunch of screens, fonts and images
 - Added script to read out frame buffer (function currently disabled in Firmware)
This commit is contained in:
2025-10-26 20:57:58 +01:00
parent 90bca063e6
commit 89c875e38f
62 changed files with 4668 additions and 489 deletions

View File

@@ -297,12 +297,12 @@ static void Update_Dot_Animation(void)
}
// Determine which dot should be active
int active_dot = _Dot_Animation_Phase / DOT_ANIMATION_SPEED;
int Active_Dot = _Dot_Animation_Phase / DOT_ANIMATION_SPEED;
// Update dot colors
for(int i = 0; i < 3; i++) {
Display_Color dot_color = (i == active_dot) ? COLOR_DOT_ACTIVE : COLOR_DOT_INACTIVE;
Display_Objects_Update_Color(_Object_Dots[i], dot_color);
Display_Color Dot_Color = (i == Active_Dot) ? COLOR_DOT_ACTIVE : COLOR_DOT_INACTIVE;
Display_Objects_Update_Color(_Object_Dots[i], Dot_Color);
}
}