You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
#include "Kaleidoscope-LEDControl.h"
|
|
|
|
namespace kaleidoscope {
|
|
class LEDSolidColor : public LEDMode {
|
|
public:
|
|
LEDSolidColor(uint8_t r, uint8_t g, uint8_t b);
|
|
|
|
protected:
|
|
void onActivate(void) final;
|
|
void refreshAt(byte row, byte col) final;
|
|
|
|
private:
|
|
uint8_t r, g, b;
|
|
};
|
|
}
|