logo

qmk_firmware

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

keymap.c (285B)


  1. // Copyright 2022 Leon Anavi <leon@anavi.org>
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include QMK_KEYBOARD_H
  4. //#include <stdio.h>
  5. enum layer_names {
  6. _BASE
  7. };
  8. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  9. [_BASE] = LAYOUT_k1(
  10. KC_MUTE
  11. )
  12. };