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.
89 lines
2.2 KiB
89 lines
2.2 KiB
#include "Kaleidoscope-NumPad.h"
|
|
#include "LEDUtils.h"
|
|
#include "Kaleidoscope.h"
|
|
#include "layers.h"
|
|
|
|
byte NumPad_::row = 255, NumPad_::col = 255;
|
|
uint8_t NumPad_::numPadLayer;
|
|
bool NumPad_::cleanupDone = true;
|
|
bool NumPad_::originalNumLockState = false;
|
|
cRGB numpad_color = CRGB(160, 0, 0);
|
|
|
|
kaleidoscope::EventHandlerResult NumPad_::onSetup(void) {
|
|
originalNumLockState = !!(kaleidoscope::hid::getKeyboardLEDs() & LED_NUM_LOCK);
|
|
return kaleidoscope::EventHandlerResult::OK;
|
|
}
|
|
|
|
static void syncNumlock(bool state) {
|
|
bool numState = !!(kaleidoscope::hid::getKeyboardLEDs() & LED_NUM_LOCK);
|
|
if (numState != state) {
|
|
kaleidoscope::hid::pressKey(Key_KeypadNumLock);
|
|
}
|
|
}
|
|
|
|
kaleidoscope::EventHandlerResult NumPad_::afterEachCycle() {
|
|
if (!Layer.isOn(numPadLayer)) {
|
|
bool numState = !!(kaleidoscope::hid::getKeyboardLEDs() & LED_NUM_LOCK);
|
|
if (!cleanupDone) {
|
|
LEDControl.set_mode(LEDControl.get_mode_index());
|
|
syncNumlock(false);
|
|
cleanupDone = true;
|
|
|
|
if (numState && !originalNumLockState) {
|
|
kaleidoscope::hid::pressKey(Key_KeypadNumLock);
|
|
numState = false;
|
|
}
|
|
}
|
|
originalNumLockState = numState;
|
|
|
|
return kaleidoscope::EventHandlerResult::OK;
|
|
}
|
|
|
|
cleanupDone = false;
|
|
syncNumlock(true);
|
|
|
|
LEDControl.set_mode(LEDControl.get_mode_index());
|
|
|
|
for (uint8_t r = 0; r < ROWS; r++) {
|
|
for (uint8_t c = 0; c < COLS; c++) {
|
|
Key k = Layer.lookupOnActiveLayer(r, c);
|
|
Key layer_key = Layer.getKey(numPadLayer, r, c);
|
|
|
|
if (k == LockLayer(numPadLayer)) {
|
|
row = r;
|
|
col = c;
|
|
}
|
|
|
|
if ((k != layer_key) || (k == Key_NoKey) || (k.flags != KEY_FLAGS)) {
|
|
LEDControl.refreshAt(r, c);
|
|
} else {
|
|
LEDControl.setCrgbAt(r, c, numpad_color);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (row > ROWS || col > COLS)
|
|
return kaleidoscope::EventHandlerResult::OK;
|
|
|
|
cRGB color = breath_compute();
|
|
LEDControl.setCrgbAt(row, col, color);
|
|
|
|
return kaleidoscope::EventHandlerResult::OK;
|
|
}
|
|
|
|
// Legacy V1 API
|
|
#if KALEIDOSCOPE_ENABLE_V1_PLUGIN_API
|
|
void NumPad_::begin() {
|
|
onSetup();
|
|
Kaleidoscope.useLoopHook(legacyLoopHook);
|
|
}
|
|
|
|
void NumPad_::legacyLoopHook(bool is_post_clear) {
|
|
if (!is_post_clear)
|
|
return;
|
|
NumPad.afterEachCycle();
|
|
}
|
|
#endif
|
|
|
|
NumPad_ NumPad;
|