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.
23 lines
373 B
23 lines
373 B
#pragma once
|
|
|
|
#include "Kaleidoscope-LEDControl.h"
|
|
#include "Kaleidoscope-Macros.h"
|
|
#include "LEDUtils.h"
|
|
|
|
class NumPad_ : public KaleidoscopePlugin {
|
|
public:
|
|
NumPad_(void) {}
|
|
|
|
void begin(void) final;
|
|
|
|
static uint8_t numPadLayer;
|
|
|
|
private:
|
|
static void loopHook(const bool postClear);
|
|
|
|
static byte row, col;
|
|
static bool cleanupDone;
|
|
};
|
|
|
|
extern NumPad_ NumPad;
|