mirror of
https://github.com/Ikatono/stream_pad_arduino.git
synced 2026-01-14 13:27:41 -06:00
13 lines
212 B
C++
13 lines
212 B
C++
#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;
|
|
}
|
|
}
|