]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/callum/keymap.c
Update keymap. (#616)
[qmk_firmware.git] / keyboards / planck / keymaps / callum / keymap.c
1 #include "planck.h"
2 #include "action_layer.h"
3 #ifdef AUDIO_ENABLE
4   #include "audio.h"
5 #endif
6 #include "eeconfig.h"
7
8 extern keymap_config_t keymap_config;
9
10 // Each layer gets a name for readability, which is then used in the keymap matrix below.
11 // The underscores don't mean anything - you can have a layer called STUFF or any other name.
12 // Layer names don't all need to be of the same length, obviously, and you can also skip them
13 // entirely and just use numbers.
14 #define _BASE 0
15 #define _MOVE 1
16 #define _SYMB 2
17 #define _FUNC 3
18
19 enum planck_keycodes {
20   BASE = SAFE_RANGE,
21   MOVE,
22   SYMB,
23   FUNC
24 };
25
26 // Fillers to make layering more clear
27 #define _______ KC_TRNS
28 #define XXXXXXX KC_NO
29
30 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
31
32 /* BASE
33  * ,-----------------------------------------------------------------------------------.
34  * | Tab  |   Q  |   W  |   F  |   P  |   G  |   J  |   L  |   U  |   Y  |   ;  |  -   |
35  * |------+------+------+------+------+-------------+------+------+------+------+------|
36  * | Bksp |   A  |   R  |   S  |   T  |   D  |   H  |   N  |   E  |   I  |   O  |  "   |
37  * |------+------+------+------+------+------|------+------+------+------+------+------|
38  * | Shift|   Z  |   X  |   C  |   V  |   B  |   K  |   M  |   ,  |   .  |   /  |Shift |
39  * |------+------+------+------+------+------+------+------+------+------+------+------|
40  * | Func | GUI  | Alt  | Ctrl | Symb |Enter |Space | Move | GUI  | Alt  | Ctrl |Caps  |
41  * `-----------------------------------------------------------------------------------'
42  */
43 [_BASE] = {
44   {KC_TAB,  KC_Q,    KC_W,    KC_F,    KC_P,    KC_G,    KC_J,    KC_L,    KC_U,    KC_Y,    KC_SCLN, KC_MINS},
45   {KC_BSPC, KC_A,    KC_R,    KC_S,    KC_T,    KC_D,    KC_H,    KC_N,    KC_E,    KC_I,    KC_O,    KC_QUOT},
46   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_K,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT},
47   {FUNC,    KC_LGUI, KC_LALT, KC_LCTL, SYMB,    KC_ENT,  KC_SPC,  MOVE,    KC_RGUI, KC_RALT, KC_RCTL, KC_CAPS}
48 },
49
50 /* MOVE
51  * ,-----------------------------------------------------------------------------------.
52  * | Esc  |      | Home |  Up  | End  |      |      | Home |  Up  | End  |      | Esc  |
53  * |------+------+------+------+------+-------------+------+------+------+------+------|
54  * | Del  |      | Left | Down |Right |      |      | Left | Down |Right |      | Del  |
55  * |------+------+------+------+------+------|------+------+------+------+------+------|
56  * |      |      |      |Pg Up |Pg Dn |      |      |Pg Dn |Pg Up |      |      |      |
57  * |------+------+------+------+------+------+------+------+------+------+------+------|
58  * |      |      |      |      |      |      |      |      |      |      |      |      |
59  * `-----------------------------------------------------------------------------------'
60  */
61 [_MOVE] = {
62   {KC_ESC,  _______, KC_HOME,   KC_UP,  KC_END, _______, _______, KC_HOME,   KC_UP,  KC_END, _______,  KC_ESC},
63   {KC_DEL,  _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______,  KC_DEL},
64   {_______, _______, _______, KC_PGUP, KC_PGDN, _______, _______, KC_PGDN, KC_PGUP, _______, _______, _______},
65   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
66 },
67
68 /* SYMB
69  * ,-----------------------------------------------------------------------------------.
70  * |  Esc |   1  |   2  |   3  |   4  |   5  |   6  |   7  |   8  |   9  |   0  | Esc  |
71  * |-----------------------------------------------------------------------------------.
72  * |  Del |   !  |   @  |   #  |   $  |   %  |   ^  |   &  |   *  |   (  |   )  | Del  |
73  * |------+------+------+------+------+-------------+------+------+------+------+------|
74  * |      |   ~  |   `  |   +  |   =  |   |  |   \  |   [  |   ]  |   {  |   }  |      |
75  * |------+------+------+------+------+------+------+------+------+------+------+------|
76  * |      |      |      |      |      |      |      |      |      |      |      |      |
77  * `-----------------------------------------------------------------------------------'
78  */
79 [_SYMB] = {
80   {KC_ESC,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_ESC },
81   {KC_DEL,  KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL },
82   {_______, KC_TILD, KC_GRV,  KC_PLUS, KC_EQL,  KC_PIPE, KC_BSLS, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, _______},
83   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
84 },
85
86 /* FUNC
87  * ,-----------------------------------------------------------------------------------.
88  * | F12  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |  F7  |  F8  |  F9  | F10  | F11  |
89  * |-----------------------------------------------------------------------------------.
90  * |      | Play | Prev | Next | BL+  |      |      |      |      |      |      |      |
91  * |------+------+------+------+------+------|------+------+------+------+------+------|
92  * |      | Mute | Vol- | Vol+ | BL-  |      |      |      |      |      |      |      |
93  * |------+------+------+------+------+------+------+------+------+------+------+------|
94  * |      |      |      |      |      |      |      |      |      |      |      |Reset |
95  * `-----------------------------------------------------------------------------------'
96  */
97 [_FUNC] = {
98   {KC_F12,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11 },
99   {_______, KC_MPLY, KC_MPRV, KC_MNXT, KC_PAUS, _______, _______, _______, _______, _______, _______, _______},
100   {_______, KC_MUTE, KC_VOLD, KC_VOLU, KC_SLCK, _______, _______, _______, _______, _______, _______, _______},
101   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET  }
102 }
103
104 };
105
106 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
107   switch (keycode) {
108     case MOVE:
109       if (record->event.pressed) {
110         layer_on(_MOVE);
111         update_tri_layer(_MOVE, _SYMB, _FUNC);
112       } else {
113         layer_off(_MOVE);
114         update_tri_layer(_MOVE, _SYMB, _FUNC);
115       }
116       return false;
117       break;
118     case SYMB:
119       if (record->event.pressed) {
120         layer_on(_SYMB);
121         update_tri_layer(_MOVE, _SYMB, _FUNC);
122       } else {
123         layer_off(_SYMB);
124         update_tri_layer(_MOVE, _SYMB, _FUNC);
125       }
126       return false;
127       break;
128     case FUNC:
129       if (record->event.pressed) {
130         layer_on(_FUNC);
131       } else {
132         layer_off(_FUNC);
133       }
134       return false;
135       break;
136   }
137   return true;
138 }