diff options
author | QMK Bot <hello@qmk.fm> | 2022-11-30 06:18:38 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-11-30 06:18:38 +0000 |
commit | 891734e2d3327034811a529ccfea001a0751fa43 (patch) | |
tree | 2d623b69d01d6c633b87dcb592216b370dbd7c64 /layouts | |
parent | 3fffdf4c716a80b33af2a5032198c986b9bd09f4 (diff) | |
parent | e0d0d81dfa7bf5bc492318d80f16f51722d69471 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/default/ortho_5x5/default_ortho_5x5/keymap.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/default/ortho_5x5/default_ortho_5x5/keymap.c b/layouts/default/ortho_5x5/default_ortho_5x5/keymap.c new file mode 100644 index 0000000000..fbcd47b79d --- /dev/null +++ b/layouts/default/ortho_5x5/default_ortho_5x5/keymap.c @@ -0,0 +1,24 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┬───┬───┐ + * │ A │ B │ C │ D │ E │ + * ├───┼───┼───┼───┼───┤ + * │ A │ B │ C │ D │ E │ + * ├───┼───┼───┼───┼───┤ + * │ A │ B │ C │ D │ E │ + * ├───┼───┼───┼───┼───┤ + * │ A │ B │ C │ D │ E │ + * ├───┼───┼───┼───┼───┤ + * │ A │ B │ C │ D │ E │ + * └───┴───┴───┴───┴───┘ + */ + [0] = LAYOUT_ortho_5x5( + KC_A, KC_B, KC_C, KC_D, KC_E, + KC_A, KC_B, KC_C, KC_D, KC_E, + KC_A, KC_B, KC_C, KC_D, KC_E, + KC_A, KC_B, KC_C, KC_D, KC_E, + KC_A, KC_B, KC_C, KC_D, KC_E + ) +}; |