qmk_firmware

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

keymap.c (376B)


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