logo

qmk_firmware

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

keymap.c (385B)


  1. #include QMK_KEYBOARD_H
  2. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  3. [0] = LAYOUT_ortho_3x3(
  4. LT(1, KC_MPRV), KC_MNXT, KC_MPLY,
  5. KC_VOLD, KC_UP, KC_VOLU,
  6. KC_LEFT, KC_DOWN, KC_RGHT
  7. ),
  8. [1] = LAYOUT_ortho_3x3(
  9. KC_ESC, KC_MPLY, QK_BOOT,
  10. KC_P7, KC_P1, KC_F1,
  11. KC_F2, KC_F3, KC_F4
  12. )
  13. };