summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGergely Nagy <kaleidoscope@gergo.csillger.hu>2017-10-01 01:18:59 +0200
committerGergely Nagy <kaleidoscope@gergo.csillger.hu>2017-10-01 01:18:59 +0200
commit2a13e4a9c91b24b8108e05c49f8da5c3575aa9a0 (patch)
treed43b4db288b40aa42932a69e4371d6e7818561fd
parent0ee5a937a5026b64e82492c396b8fbcb2b4052de (diff)
downloadmodel01-firmware-2a13e4a9c91b24b8108e05c49f8da5c3575aa9a0.tar.gz
model01-firmware-2a13e4a9c91b24b8108e05c49f8da5c3575aa9a0.tar.bz2
model01-firmware-2a13e4a9c91b24b8108e05c49f8da5c3575aa9a0.zip
Updated to use the new NumLock plugin
The NumLock plugin works without a macro now, so we can simplify the factory firmware by just using `Key_KeypadNumLock`. Signed-off-by: Gergely Nagy <kaleidoscope@gergo.csillger.hu>
-rw-r--r--Model01-Firmware.ino6
1 files changed, 2 insertions, 4 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino
index 9097284..82277ba 100644
--- a/Model01-Firmware.ino
+++ b/Model01-Firmware.ino
@@ -74,7 +74,7 @@ ___ \
Key_LeftControl, Key_Backspace, Key_LeftGui, Key_LeftShift, \
Key_Keymap1_Momentary, \
\
- Macro_Any, Key_6, Key_7, Key_8, Key_9, Key_0, Key_ToggleNumlock, \
+ Macro_Any, Key_6, Key_7, Key_8, Key_9, Key_0, Key_KeypadNumLock, \
Key_Enter, Key_Y, Key_U, Key_I, Key_O, Key_P, Key_Equals, \
Key_H, Key_J, Key_K, Key_L, Key_Semicolon, Key_Quote, \
Key_RightAlt, Key_N, Key_M, Key_Comma, Key_Period, Key_Slash, Key_Minus, \
@@ -97,9 +97,7 @@ static kaleidoscope::LEDSolidColor solidIndigo(0, 0, 170);
static kaleidoscope::LEDSolidColor solidViolet(130, 0, 120);
const macro_t *macroAction(uint8_t macroIndex, uint8_t keyState) {
- if (macroIndex == TOGGLENUMLOCK && keyToggledOn(keyState)) {
- return NumLock.toggle();
- } else if (macroIndex == 1 && keyToggledOn(keyState)) {
+ if (macroIndex == 1 && keyToggledOn(keyState)) {
Macros.type(PSTR("Keyboardio Model 01 - Kaleidoscope "));
Macros.type(PSTR(BUILD_INFORMATION));
} else if (macroIndex == MACRO_ANY) {