logo

qmk_firmware

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

keymap.c (1473B)


  1. /* Copyright 2019 T.Shinohara
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include QMK_KEYBOARD_H
  17. enum layer_number {
  18. _NUMBER = 0,
  19. _CURSOL,
  20. _MOUSE
  21. };
  22. #define NUMBER TO(_NUMBER)
  23. #define CURSOL TO(_CURSOL)
  24. #define MOUSE TO(_MOUSE)
  25. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  26. [_NUMBER] = LAYOUT(
  27. NUMBER, CURSOL, MOUSE,
  28. KC_7, KC_8, KC_9,
  29. KC_4, KC_5, KC_6,
  30. KC_1, KC_2, KC_3,
  31. KC_0, KC_BSPC, KC_ENT
  32. ),
  33. [_CURSOL] = LAYOUT(
  34. NUMBER, CURSOL, MOUSE,
  35. KC_HOME, KC_UP, KC_PGUP,
  36. KC_LEFT, KC_ESC, KC_RIGHT,
  37. KC_END, KC_DOWN, KC_PGDN,
  38. KC_DEL, KC_BSPC, KC_ENT
  39. ),
  40. [_MOUSE] = LAYOUT(
  41. NUMBER, CURSOL, MOUSE,
  42. KC_CUT, KC_COPY, KC_PSTE,
  43. KC_UNDO, KC_FIND, KC_AGIN,
  44. XXXXXXX, XXXXXXX, XXXXXXX,
  45. KC_DEL, KC_BSPC, KC_ENT
  46. ),
  47. };