logo

qmk_firmware

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

keymap.c (376B)


  1. // Copyright 2023 jpe230 (@jpe230)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include QMK_KEYBOARD_H
  4. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  5. [0] = LAYOUT_ortho_1x1(
  6. KC_MUTE
  7. )
  8. };
  9. #ifdef ENCODER_MAP_ENABLE
  10. const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
  11. [0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
  12. };
  13. #endif