|
|
|
@ -49,6 +49,14 @@ namespace KaleidoscopePlugins {
|
|
|
|
|
static void display (uint16_t symbol) { display (symbol, 0, 2); };
|
|
|
|
|
static void display (uint16_t symbol, uint8_t col) { display (symbol, 0, col); };
|
|
|
|
|
|
|
|
|
|
static void clear (Key key, uint8_t row, uint8_t col) { display (key, row, col, {0, 0, 0}); };
|
|
|
|
|
static void clear (Key key, uint8_t col) { clear (key, 0, col); };
|
|
|
|
|
static void clear (Key key) { clear (key, 0, 2); };
|
|
|
|
|
|
|
|
|
|
static void clear (uint16_t symbol, uint8_t row, uint8_t col) { display (symbol, row, col, {0, 0, 0}); };
|
|
|
|
|
static void clear (uint16_t symbol, uint8_t col) { clear (symbol, 0, col); };
|
|
|
|
|
static void clear (uint16_t symbol) { clear (symbol, 0, 2); };
|
|
|
|
|
|
|
|
|
|
static cRGB color;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|