qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

keymap.c (547B)


      1 #include QMK_KEYBOARD_H
      2 
      3 void matrix_init_user(void) {
      4   debug_enable=true;
      5   debug_matrix=true;
      6   //debug_keyboard=true;
      7   //debug_mouse=true;
      8 }
      9 
     10 // clang-format off
     11 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
     12 	[0] = LAYOUT(
     13         KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I,    KC_O,   KC_P,
     14         KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K,    KC_L,   KC_SCLN,
     15         KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
     16                           KC_1, KC_2, KC_3, KC_4
     17     )
     18 };
     19 // clang-format on