You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
4.7 KiB

  1. /* Copyright 2022 bdtc123
  2. * This program is free software: you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation, either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include QMK_KEYBOARD_H
  16. enum my_keycodes {
  17. RMT = QK_KB_0,
  18. RMS,
  19. RMIH,
  20. RMDH,
  21. RMIS,
  22. RMDS,
  23. RMIV,
  24. RMDV
  25. };
  26. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  27. switch (keycode) {
  28. case RMT:
  29. if (record->event.pressed)
  30. {rgb_matrix_toggle();
  31. }
  32. return false;
  33. case RMS:
  34. if (record->event.pressed)
  35. {rgb_matrix_step();
  36. }
  37. return false;
  38. case RMIH:
  39. if (record->event.pressed)
  40. {rgb_matrix_increase_hue();
  41. }
  42. return false;
  43. case RMDH:
  44. if (record->event.pressed)
  45. {rgb_matrix_decrease_hue();
  46. }
  47. return false;
  48. case RMIS:
  49. if (record->event.pressed)
  50. {rgb_matrix_increase_sat();
  51. }
  52. return false;
  53. case RMDS:
  54. if (record->event.pressed)
  55. {rgb_matrix_decrease_sat();
  56. }
  57. return false;
  58. case RMIV:
  59. if (record->event.pressed)
  60. {rgb_matrix_increase_val();
  61. }
  62. return false;
  63. case RMDV:
  64. if (record->event.pressed)
  65. {rgb_matrix_decrease_val();
  66. }
  67. return true;
  68. default:
  69. return true;
  70. }
  71. }
  72. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  73. [0] = LAYOUT(
  74. KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_GRV, KC_PGUP, KC_PGDN,
  75. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
  76. KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
  77. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
  78. KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_LEFT, KC_DOWN, KC_RGHT
  79. ),
  80. [1] = LAYOUT(
  81. _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, QK_BOOT, _______, _______, _______,
  82. _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______,
  83. _______, RMT, RMS, RMIH, RMDH, RMIS, RMDS, RMIV, RMDV, _______, _______, _______, _______,
  84. _______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, _______,
  85. _______, _______, _______, _______, _______, _______, _______, _______, _______
  86. ),
  87. [2] = LAYOUT(
  88. _______, _______, _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______,
  89. _______, _______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______, _______,
  90. _______, _______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______,
  91. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  92. _______, _______, _______, _______, _______, _______, _______, _______, _______
  93. ),
  94. [3] = LAYOUT(
  95. _______, _______, _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______,
  96. _______, _______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______, _______,
  97. _______, _______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______,
  98. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  99. _______, _______, _______, _______, _______, _______, _______, _______, _______
  100. ),
  101. };