logo

qmk_firmware

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

keymap.c (366B)


  1. // Copyright 2024 QMK
  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_1x2(
  6. LT(1,KC_LEFT), LT(2,KC_RIGHT)
  7. ),
  8. [1] = LAYOUT_ortho_1x2(
  9. _______, KC_UP
  10. ),
  11. [2] = LAYOUT_ortho_1x2(
  12. KC_DOWN, _______
  13. )
  14. };