diff options
| -rw-r--r-- | keyboards/boardwalk/keymaps/brendanwr/config.h | 16 | ||||
| -rw-r--r-- | keyboards/boardwalk/keymaps/brendanwr/keymap.c | 95 |
2 files changed, 111 insertions, 0 deletions
diff --git a/keyboards/boardwalk/keymaps/brendanwr/config.h b/keyboards/boardwalk/keymaps/brendanwr/config.h new file mode 100644 index 000000000..a2530241f --- /dev/null +++ b/keyboards/boardwalk/keymaps/brendanwr/config.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #pragma once | ||
diff --git a/keyboards/boardwalk/keymaps/brendanwr/keymap.c b/keyboards/boardwalk/keymaps/brendanwr/keymap.c new file mode 100644 index 000000000..b428651e7 --- /dev/null +++ b/keyboards/boardwalk/keymaps/brendanwr/keymap.c | |||
| @@ -0,0 +1,95 @@ | |||
| 1 | /* | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | enum layer { | ||
| 19 | _BASE, | ||
| 20 | _FN, | ||
| 21 | _BACKLIT | ||
| 22 | }; | ||
| 23 | |||
| 24 | |||
| 25 | #define FN MO(_FN) | ||
| 26 | #define BACKLIT MO(_BACKLIT) | ||
| 27 | |||
| 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 29 | |||
| 30 | /* BASE | ||
| 31 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
| 32 | * | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | + | \ | | ||
| 33 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
| 34 | * | TAB | Q | W | E | R | T | Y | U | I | O | P | [ | ] | BACKSP | | ||
| 35 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
| 36 | * | LCTRL | A | S | D | F | G | H | J | K | L | ; | ' | ENTER | HOME | | ||
| 37 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
| 38 | * | LSHIFT | Z | X | C | V | B | N | M | , | . | / | RSHIFT | FN | END | | ||
| 39 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
| 40 | * | | LALT | LGUI | SPACE | RGUI | RALT | | | ||
| 41 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
| 42 | */ | ||
| 43 | |||
| 44 | [_BASE] = LAYOUT_ortho_7u( | ||
| 45 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, | ||
| 46 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, | ||
| 47 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_HOME, | ||
| 48 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, FN, KC_END, | ||
| 49 | KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT | ||
| 50 | ), | ||
| 51 | |||
| 52 | /* FUNCTION | ||
| 53 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
| 54 | * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | ` | | ||
| 55 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
| 56 | * | | | | | | | | | | | UP | | | DEL | | ||
| 57 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
| 58 | * | | VOLD | VOLU | MUTE | | | | | | | LEFT | RIGHT | | PG_UP | | ||
| 59 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
| 60 | * | | | | | | | | | | | DOWN | | | PG_DN | | ||
| 61 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
| 62 | * | | | | | | | | | ||
| 63 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
| 64 | */ | ||
| 65 | |||
| 66 | [_FN] = LAYOUT_ortho_7u( | ||
| 67 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_GRV, | ||
| 68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP, _______, _______, KC_DEL, | ||
| 69 | _______, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_RGHT, _______, KC_PGUP, | ||
| 70 | BACKLIT, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DOWN, _______, _______, KC_PGDN, | ||
| 71 | _______, _______, _______, _______, _______ | ||
| 72 | ), | ||
| 73 | |||
| 74 | /* BACKLIT | ||
| 75 | * .-----------------------------------------------------------------------------------------------------------------------------. | ||
| 76 | * | | | | | | | | | | | | | | | | ||
| 77 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------| | ||
| 78 | * | | RGBTOG | RGBMOD | RGBHUI | RGBHUD | RGBSAI | RGBSAD | RGBVAI | RGBVAD | | | | | | | ||
| 79 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+--------| | ||
| 80 | * | | | | | | | | | | | | | | | | ||
| 81 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------------------------+--------| | ||
| 82 | * | | | | | | | | | | | | | | | | ||
| 83 | * |--------+--------+--------+--------+--------+-----------------+--------+--------+--------+-----------------+--------+--------| | ||
| 84 | * | | | | | | | | | ||
| 85 | * '-----------------------------------------------------------------------------------------------------------------------------' | ||
| 86 | */ | ||
| 87 | |||
| 88 | [_BACKLIT] = LAYOUT_ortho_7u( | ||
| 89 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 90 | _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______, | ||
| 91 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 92 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 93 | _______, _______, _______, _______, _______ | ||
| 94 | ) | ||
| 95 | }; | ||
