logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

keymap.c (547B)


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