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.
Kaleidoscope/src/Kaleidoscope-NumPad.h

24 lines
409 B

#pragma once
#include "Kaleidoscope-LEDControl.h"
#include "Kaleidoscope-Macros.h"
#include "LEDUtils.h"
7 years ago
class NumPad_ : public KaleidoscopePlugin {
public:
7 years ago
NumPad_(void) {}
7 years ago
void begin(void) final;
static uint8_t numPadLayer;
private:
static void loopHook(const bool postClear);
static byte row, col;
static bool cleanupDone;
static bool originalNumLockState;
};
7 years ago
extern NumPad_ NumPad;