Merge pull request #4 from keyboardio/f/api-friendliness

API Friendliness
pull/365/head
Jesse Vincent 7 years ago committed by GitHub
commit f0a82b4b72

@ -3,11 +3,10 @@
#include "Kaleidoscope.h"
#include "layers.h"
bool NumLock_::isActive;
byte NumLock_::row = 255, NumLock_::col = 255;
uint8_t NumLock_::numPadLayer;
cRGB numpad_color = CRGB(255, 0, 0);
NumLock_::NumLock_(void) {
}
@ -16,7 +15,7 @@ void NumLock_::begin(void) {
}
void NumLock_::loopHook(bool postClear) {
if (!postClear || !isActive)
if (!postClear || !Layer.isOn(numPadLayer))
return;
for (uint8_t r = 0; r < ROWS; r++) {
@ -37,9 +36,9 @@ void NumLock_::loopHook(bool postClear) {
LEDControl.led_set_crgb_at(row, col, color);
}
const macro_t *NumLock_::toggle(byte row_, byte col_, uint8_t numPadLayer) {
row = row_;
col = col_;
const macro_t *NumLock_::toggle() {
row = Macros.row;
col = Macros.col;
if (Layer.isOn(numPadLayer)) {
Layer.off(numPadLayer);
@ -47,7 +46,6 @@ const macro_t *NumLock_::toggle(byte row_, byte col_, uint8_t numPadLayer) {
} else {
Layer.on(numPadLayer);
}
isActive = Layer.isOn(numPadLayer);
return MACRO(T(KeypadNumLock), END);
}

@ -13,11 +13,12 @@ class NumLock_ : public KaleidoscopePlugin {
void begin(void) final;
static const macro_t *toggle(byte row, byte col, uint8_t numPadLayer);
static const macro_t *toggle();
static void loopHook(const bool postClear);
static uint8_t numPadLayer;
private:
static bool isActive;
static byte row, col;
};

Loading…
Cancel
Save