From 7e698c71cd8b9d0cdef6c622cfdd88a13e2a6587 Mon Sep 17 00:00:00 2001 From: Suschman Date: Tue, 20 Jul 2021 02:30:09 +0200 Subject: Six Pack and ortho_ layout updates (#13587) Co-authored-by: Ryan Co-authored-by: Suschman --- layouts/default/ortho_2x6/default_ortho_2x6/keymap.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 layouts/default/ortho_2x6/default_ortho_2x6/keymap.c (limited to 'layouts/default/ortho_2x6/default_ortho_2x6/keymap.c') diff --git a/layouts/default/ortho_2x6/default_ortho_2x6/keymap.c b/layouts/default/ortho_2x6/default_ortho_2x6/keymap.c new file mode 100644 index 0000000000..1c8a6b7ef9 --- /dev/null +++ b/layouts/default/ortho_2x6/default_ortho_2x6/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 │ + * ├───┼───┼───┼───┼───┼───┤ + * │ G │ H │ I │ J │ K │ L │ + * └───┴───┴───┴───┴───┴───┘ + */ + [0] = LAYOUT_ortho_2x6( + KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, + KC_G, KC_H, KC_I, KC_J, KC_K, KC_L + ) +}; -- cgit v1.2.3