diff options
-rw-r--r-- | Model01-Firmware.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino index e099647..3051a64 100644 --- a/Model01-Firmware.ino +++ b/Model01-Firmware.ino @@ -102,7 +102,6 @@ static void versionInfoMacro(uint8_t keyState) { Macros.type(PSTR("Keyboardio Model 01 - Kaleidoscope ")); Macros.type(PSTR(BUILD_INFORMATION)); } - } static void anyKeyMacro(uint8_t keyState) { @@ -117,6 +116,7 @@ static void anyKeyMacro(uint8_t keyState) { const macro_t *macroAction(uint8_t macroIndex, uint8_t keyState) { switch (macroIndex) { + case MACRO_VERSION_INFO: versionInfoMacro(keyState); break; |