diff --git a/examples/Devices/Keyboardio/Model100/Model100.ino b/examples/Devices/Keyboardio/Model100/Model100.ino index 9b8cbda6..879f3985 100644 --- a/examples/Devices/Keyboardio/Model100/Model100.ino +++ b/examples/Devices/Keyboardio/Model100/Model100.ino @@ -24,7 +24,7 @@ #include "Kaleidoscope-FocusSerial.h" // Support for keys that move the mouse -//#include "Kaleidoscope-MouseKeys.h" +#include "Kaleidoscope-MouseKeys.h" // Support for macros #include "Kaleidoscope-Macros.h" @@ -264,9 +264,9 @@ KEYMAPS( [FUNCTION] = KEYMAP_STACKED (___, Key_F1, Key_F2, Key_F3, Key_F4, Key_F5, Key_CapsLock, - Key_Tab, ___, ___, ___, ___, ___, ___, - Key_Home, ___, ___, ___, ___, ___, - Key_End, Key_PrintScreen, Key_Insert, ___, ___, ___, ___, + Key_Tab, ___, Key_mouseUp, ___, Key_mouseBtnR, Key_mouseWarpEnd, Key_mouseWarpNE, + Key_Home, Key_mouseL, Key_mouseDn, Key_mouseR, Key_mouseBtnL, Key_mouseWarpNW, + Key_End, Key_PrintScreen, Key_Insert, ___, Key_mouseBtnM, Key_mouseWarpSW, Key_mouseWarpSE, ___, Key_Delete, ___, ___, ___, @@ -495,6 +495,7 @@ KALEIDOSCOPE_INIT_PLUGINS( Macros, // The MouseKeys plugin lets you add keys to your keymap which move the mouse. + MouseKeys, // The HostPowerManagement plugin allows us to turn LEDs off when then host // goes to sleep, and resume them when it wakes up.