qmk-firmware/layouts/default/ortho_5x12/default_ortho_5x12/keymap.c

25 lines
2.1 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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 
* ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤
* │ A  B  C  D  E  F  G  H  I  J  K  L 
* ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤
* │ A  B  C  D  E  F  G  H  I  J  K  L 
* ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤
* │ A  B  C  D  E  F  G  H  I  J  K  L 
* ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤
* │ A  B  C  D  E  F  G  H  I  J  K  L 
* └───┴───┴───┴───┴───┴───┴───┴───┴───┴───┴───┴───┘
*/
[0] = LAYOUT_ortho_5x12(
KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, KC_K, KC_L,
KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, KC_K, KC_L,
KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, KC_K, KC_L,
KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, KC_K, KC_L,
KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, KC_K, KC_L
)
};