diff options
author | Suschman <Suschman@users.noreply.github.com> | 2021-07-20 02:30:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 17:30:09 -0700 |
commit | 7e698c71cd8b9d0cdef6c622cfdd88a13e2a6587 (patch) | |
tree | f94f7ba52479e650a90200095cb21f4e0c1a7846 /layouts/default/ortho_2x3/default_ortho_2x3 | |
parent | 046429fa87ab26bd131c262e590aa6cd03dd9f75 (diff) |
Six Pack and ortho_ layout updates (#13587)
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Suschman <suschman@gmail.com>
Diffstat (limited to 'layouts/default/ortho_2x3/default_ortho_2x3')
-rw-r--r-- | layouts/default/ortho_2x3/default_ortho_2x3/keymap.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/default/ortho_2x3/default_ortho_2x3/keymap.c b/layouts/default/ortho_2x3/default_ortho_2x3/keymap.c new file mode 100644 index 0000000000..a38146d020 --- /dev/null +++ b/layouts/default/ortho_2x3/default_ortho_2x3/keymap.c @@ -0,0 +1,15 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┐ + * │ A │ B │ C │ + * ├───┼───┼───┤ + * │ D │ E │ F │ + * └───┴───┴───┘ + */ + [0] = LAYOUT_ortho_2x3( + KC_A, KC_B, KC_C, + KC_D, KC_E, KC_F + ) +}; |