2017-01-19 15:49:59 +01:00
|
|
|
/* This is the Atreus62 keyboard layout by Xyverz aka u/Zrevyx on r/mk
|
|
|
|
I've blatantly stolen what works for me from the Planck and Preonic
|
|
|
|
layouts and modified this file to fit me. Initial credet goes to
|
|
|
|
u/profet23 for the doing all the work and adding this keyboard to
|
|
|
|
QMK in the first place.
|
|
|
|
|
|
|
|
I've got Dvorak, Qwerty, and Colemak layouts at this time, with the
|
|
|
|
possibility of adding more in the future.
|
|
|
|
|
|
|
|
The bottom row is fairly Kinesis-ish since the Contour and Advantage
|
|
|
|
keyboards have been my daily drivers for the last 17 years. I hope
|
|
|
|
You can get some enjoyment out of this layout should you chose it!
|
|
|
|
|
|
|
|
CHANGELOG:
|
|
|
|
|
|
|
|
0.1 - Initial commit. Based off of Profet's default keymap.
|
2019-10-29 00:09:01 +01:00
|
|
|
0.2 - Converted to a more Planck/Preonic keymap style file with
|
2017-01-19 15:49:59 +01:00
|
|
|
persistent layers enabled. Renamed layers to reflect OLKB maps.
|
|
|
|
Added a TODO list.
|
2019-10-29 00:09:01 +01:00
|
|
|
0.3 - Moved location of media & volume keys. Added Print Screen,
|
2018-05-19 00:32:50 +02:00
|
|
|
Scroll Lock and Pause keys. Added a WOW gaming layer that
|
|
|
|
changes the location of Ctrl & Alt to the thumb keys. Added
|
|
|
|
readme.
|
2019-10-29 00:09:01 +01:00
|
|
|
0.4 - After more useage, I realized that the ESC key was in the way
|
2018-05-19 00:32:50 +02:00
|
|
|
of my muscle memory (gee, thanks, Planck!) so I moved it to
|
|
|
|
the normal Caps Lock position, and moved Caps Lock to the same
|
|
|
|
position on the RAISE and LOWER layers. Added code to turn off
|
|
|
|
the Pro Micro LEDs after flashing.
|
|
|
|
0.5 - Converted keymap to LAYOUT standard.
|
2019-10-29 00:09:01 +01:00
|
|
|
0.6 - Swapped ESC and GRV in all layers.
|
|
|
|
0.7 - Brought code up to current standards.
|
2019-11-12 00:11:56 +01:00
|
|
|
0.8 - Added MACLOCK macro.
|
2020-01-27 05:04:39 +01:00
|
|
|
0.9 - Updated code to correspond to new setPinInput behaviour
|
2017-01-19 15:49:59 +01:00
|
|
|
|
|
|
|
TODO:
|
|
|
|
|
|
|
|
* Make the layout more efficient, even if it means changing the RAISE
|
|
|
|
and LOWER functionality.
|
|
|
|
* Add legends in comments for each layer. Maybe.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-01-13 10:51:52 +01:00
|
|
|
// this is the style you want to emulate.
|
|
|
|
// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
|
2018-05-09 00:55:50 +02:00
|
|
|
#include QMK_KEYBOARD_H
|
2019-10-29 00:09:01 +01:00
|
|
|
|
|
|
|
enum layer_names { _DVORAK, _QWERTY, _COLEMAK, _WOW, _DESTINY, _LOWER, _RAISE, _ADJUST };
|
|
|
|
|
|
|
|
enum atreus52_keycodes { DVORAK = SAFE_RANGE, QWERTY, COLEMAK, WOW, DESTINY, LOWER, RAISE, ADJUST };
|
2017-01-19 15:49:59 +01:00
|
|
|
|
2018-05-19 00:32:50 +02:00
|
|
|
// Aliases to make the keymap clearer.
|
|
|
|
#define CTL_ENT CTL_T(KC_ENT)
|
2019-10-29 00:09:01 +01:00
|
|
|
#define LOWER MO(_LOWER)
|
|
|
|
#define RAISE MO(_RAISE)
|
|
|
|
#define ADJUST MO(_ADJUST)
|
2019-11-12 00:11:56 +01:00
|
|
|
#define MACLOCK LGUI(LCTL(KC_Q))
|
2018-05-19 00:32:50 +02:00
|
|
|
|
2019-10-29 00:09:01 +01:00
|
|
|
// clang-format off
|
2017-01-13 10:51:52 +01:00
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
2018-05-19 00:32:50 +02:00
|
|
|
[_DVORAK] = LAYOUT ( /* dvorak */
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH,
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_GRV, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS,
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
|
|
|
|
KC_LCTL, KC_LALT, KC_LEFT, KC_RGHT, LOWER, KC_BSPC, KC_LGUI, KC_ENT, KC_SPC, RAISE, KC_UP, KC_DOWN, KC_RGUI, KC_RCTL
|
|
|
|
),
|
|
|
|
|
2018-05-19 00:32:50 +02:00
|
|
|
[_QWERTY] = LAYOUT ( /* qwerty */
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_GRV, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
|
|
|
|
KC_LCTL, KC_LALT, KC_LEFT, KC_RGHT, LOWER, KC_BSPC, KC_LGUI, KC_ENT, KC_SPC, RAISE, KC_UP, KC_DOWN, KC_RGUI, KC_RCTL
|
|
|
|
),
|
|
|
|
|
2018-05-19 00:32:50 +02:00
|
|
|
[_COLEMAK] = LAYOUT ( /* colemak */
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_DEL,
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_GRV, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
|
|
|
|
KC_LCTL, KC_LALT, KC_LEFT, KC_RGHT, LOWER, KC_BSPC, KC_LGUI, KC_ENT, KC_SPC, RAISE, KC_UP, KC_DOWN, KC_RGUI, KC_RCTL
|
|
|
|
),
|
|
|
|
|
2018-05-19 00:32:50 +02:00
|
|
|
[_WOW] = LAYOUT ( /* Dvorak with minor modifications for playing World of Warcraft */
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
|
2018-05-19 00:32:50 +02:00
|
|
|
KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH,
|
2019-10-29 00:09:01 +01:00
|
|
|
KC_GRV, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS,
|
2018-05-19 00:32:50 +02:00
|
|
|
KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
|
|
|
|
KC_LCTL, KC_LALT, KC_LEFT, KC_RGHT, LOWER, KC_BSPC, KC_LALT, CTL_ENT, KC_SPC, RAISE, KC_UP, KC_DOWN, KC_RGUI, KC_ENT
|
2018-05-09 00:55:50 +02:00
|
|
|
),
|
|
|
|
|
2019-10-29 00:09:01 +01:00
|
|
|
[_DESTINY] = LAYOUT ( /* Dvorak with minor modifications for playing Destiny 2 and other FPS Looters */
|
|
|
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
|
|
|
|
KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH,
|
|
|
|
KC_GRV, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS,
|
|
|
|
KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
|
|
|
|
KC_LCTL, KC_LALT, KC_LEFT, KC_RGHT, LOWER, KC_BSPC, KC_DEL, KC_ENT, KC_SPC, RAISE, KC_UP, KC_DOWN, KC_RGUI, KC_ENT
|
|
|
|
),
|
|
|
|
|
2018-05-19 00:32:50 +02:00
|
|
|
[_LOWER] = LAYOUT (
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_F11, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F12,
|
|
|
|
KC_TILD, KC_GRV, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PIPE,
|
2018-05-19 00:32:50 +02:00
|
|
|
KC_CAPS, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, KC_PLUS, KC_LCBR, KC_RCBR, _______,
|
|
|
|
_______, _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______,
|
2019-11-12 00:11:56 +01:00
|
|
|
_______, _______, KC_HOME, KC_END, _______, KC_DEL, MACLOCK, _______, KC_INS, _______, KC_PGUP, KC_PGDN, _______, _______
|
2018-05-09 00:55:50 +02:00
|
|
|
),
|
2018-05-19 00:32:50 +02:00
|
|
|
[_RAISE] = LAYOUT (
|
2018-05-09 00:55:50 +02:00
|
|
|
KC_F11, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F12,
|
|
|
|
KC_TILD, KC_GRV, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_BSLS,
|
2018-05-19 00:32:50 +02:00
|
|
|
KC_CAPS, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, KC_EQL, KC_LBRC, KC_RBRC, _______,
|
|
|
|
_______, _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______,
|
2019-11-12 00:11:56 +01:00
|
|
|
_______, _______, KC_HOME, KC_END, _______, KC_DEL, MACLOCK, _______, KC_INS, _______, KC_PGUP, KC_PGDN, _______, _______
|
2018-05-09 00:55:50 +02:00
|
|
|
),
|
2018-05-19 00:32:50 +02:00
|
|
|
[_ADJUST] = LAYOUT (
|
2019-10-29 00:09:01 +01:00
|
|
|
_______, _______, _______, KC_F13, KC_F14, KC_F15, _______, _______, _______, _______, _______, _______,
|
2018-05-09 00:55:50 +02:00
|
|
|
_______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
2019-10-29 00:09:01 +01:00
|
|
|
_______, _______, _______, _______, _______, _______, _______, QWERTY, COLEMAK, DVORAK, DESTINY, WOW,
|
2018-05-09 00:55:50 +02:00
|
|
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
|
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
|
|
),
|
2017-01-13 10:51:52 +01:00
|
|
|
};
|
2019-10-29 00:09:01 +01:00
|
|
|
//clang-format on
|
2017-01-13 10:51:52 +01:00
|
|
|
|
2018-09-04 01:57:06 +02:00
|
|
|
void matrix_init_user(void) {
|
|
|
|
#ifdef BOOTLOADER_CATERINA
|
|
|
|
// This will disable the red LEDs on the ProMicros
|
2019-10-29 00:09:01 +01:00
|
|
|
setPinInput(D5);
|
|
|
|
setPinInput(B0);
|
2018-09-04 01:57:06 +02:00
|
|
|
#endif
|
|
|
|
};
|
2017-01-13 10:51:52 +01:00
|
|
|
|
2019-10-29 00:09:01 +01:00
|
|
|
layer_state_t layer_state_set_user(layer_state_t state) {
|
|
|
|
return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
|
|
|
|
};
|
2017-01-13 10:51:52 +01:00
|
|
|
|
2017-01-19 15:49:59 +01:00
|
|
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
2019-10-29 00:09:01 +01:00
|
|
|
if (record->event.pressed) {
|
|
|
|
switch (keycode) {
|
|
|
|
case DVORAK:
|
|
|
|
set_single_persistent_default_layer(_DVORAK);
|
|
|
|
return false;
|
|
|
|
case QWERTY:
|
|
|
|
set_single_persistent_default_layer(_QWERTY);
|
|
|
|
return false;
|
|
|
|
case COLEMAK:
|
|
|
|
set_single_persistent_default_layer(_COLEMAK);
|
|
|
|
return false;
|
|
|
|
case WOW:
|
|
|
|
set_single_persistent_default_layer(_WOW);
|
|
|
|
return false;
|
|
|
|
case DESTINY:
|
|
|
|
set_single_persistent_default_layer(_DESTINY);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2017-01-13 10:51:52 +01:00
|
|
|
};
|