|
|
@ -17,6 +17,10 @@
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef BUILD_INFORMATION
|
|
|
|
|
|
|
|
#define BUILD_INFORMATION "locally built"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "Kaleidoscope.h"
|
|
|
|
#include "Kaleidoscope.h"
|
|
|
|
#include "Kaleidoscope-EEPROM-Settings.h"
|
|
|
|
#include "Kaleidoscope-EEPROM-Settings.h"
|
|
|
|
#include "Kaleidoscope-EEPROM-Keymap.h"
|
|
|
|
#include "Kaleidoscope-EEPROM-Keymap.h"
|
|
|
@ -33,7 +37,8 @@
|
|
|
|
#define TG(n) LockLayer(n)
|
|
|
|
#define TG(n) LockLayer(n)
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
enum {
|
|
|
|
LAYER_QWERTY
|
|
|
|
MACRO_QWERTY,
|
|
|
|
|
|
|
|
MACRO_VERSION_INFO
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define Key_Exclamation LSHIFT(Key_1)
|
|
|
|
#define Key_Exclamation LSHIFT(Key_1)
|
|
|
@ -84,13 +89,13 @@ KEYMAPS(
|
|
|
|
(
|
|
|
|
(
|
|
|
|
Key_Insert ,Key_Home ,Key_UpArrow ,Key_End ,Key_PageUp
|
|
|
|
Key_Insert ,Key_Home ,Key_UpArrow ,Key_End ,Key_PageUp
|
|
|
|
,Key_Delete ,Key_LeftArrow ,Key_DownArrow ,Key_RightArrow ,Key_PageDown
|
|
|
|
,Key_Delete ,Key_LeftArrow ,Key_DownArrow ,Key_RightArrow ,Key_PageDown
|
|
|
|
,XXX ,Consumer_VolumeIncrement ,XXX ,XXX ,___ ,___
|
|
|
|
,M(MACRO_VERSION_INFO) ,Consumer_VolumeIncrement ,XXX ,XXX ,___ ,___
|
|
|
|
,M(QWERTY) ,Consumer_VolumeDecrement ,___ ,___ ,___ ,___
|
|
|
|
,MoveToLayer(QWERTY) ,Consumer_VolumeDecrement ,___ ,___ ,___ ,___
|
|
|
|
|
|
|
|
|
|
|
|
,Key_UpArrow ,Key_F7 ,Key_F8 ,Key_F9 ,Key_F10
|
|
|
|
,Key_UpArrow ,Key_F7 ,Key_F8 ,Key_F9 ,Key_F10
|
|
|
|
,Key_DownArrow ,Key_F4 ,Key_F5 ,Key_F6 ,Key_F11
|
|
|
|
,Key_DownArrow ,Key_F4 ,Key_F5 ,Key_F6 ,Key_F11
|
|
|
|
,___ ,XXX ,Key_F1 ,Key_F2 ,Key_F3 ,Key_F12
|
|
|
|
,___ ,XXX ,Key_F1 ,Key_F2 ,Key_F3 ,Key_F12
|
|
|
|
,___ ,___ ,M(QWERTY) ,Key_PrintScreen ,Key_ScrollLock ,Consumer_PlaySlashPause
|
|
|
|
,___ ,___ ,MoveToLayer(QWERTY) ,Key_PrintScreen ,Key_ScrollLock ,Consumer_PlaySlashPause
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
/* *INDENT-ON* */
|
|
|
@ -110,8 +115,18 @@ KALEIDOSCOPE_INIT_PLUGINS(
|
|
|
|
|
|
|
|
|
|
|
|
const macro_t *macroAction(uint8_t macroIndex, uint8_t keyState) {
|
|
|
|
const macro_t *macroAction(uint8_t macroIndex, uint8_t keyState) {
|
|
|
|
switch (macroIndex) {
|
|
|
|
switch (macroIndex) {
|
|
|
|
case QWERTY:
|
|
|
|
case MACRO_QWERTY:
|
|
|
|
Layer.move(LAYER_QWERTY);
|
|
|
|
// This macro is currently unused, but is kept around for compatibility
|
|
|
|
|
|
|
|
// reasons. We used to use it in place of `MoveToLayer(QWERTY)`, but no
|
|
|
|
|
|
|
|
// longer do. We keep it so that if someone still has the old layout with
|
|
|
|
|
|
|
|
// the macro in EEPROM, it will keep working after a firmware update.
|
|
|
|
|
|
|
|
Layer.move(QWERTY);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MACRO_VERSION_INFO:
|
|
|
|
|
|
|
|
if (keyToggledOn(keyState)) {
|
|
|
|
|
|
|
|
Macros.type(PSTR("Keyboardio Atreus - Kaleidoscope "));
|
|
|
|
|
|
|
|
Macros.type(PSTR(BUILD_INFORMATION));
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|