large update

This commit is contained in:
2024-02-04 09:59:54 -06:00
parent a3aec45452
commit 266537ff33
14 changed files with 580 additions and 4 deletions

12
src/Page.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "Page.hpp"
namespace Configuration
{
std::array<Pixel, 12> Page::led_rgb;
void Page::update_leds()
{
for (int i = 0; i < 12; i++)
led_rgb[i] = buttons[i].color;
}
}