keymap.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #include QMK_KEYBOARD_H
  2. enum layer_names {
  3. _QWERTY,
  4. _FNM
  5. };
  6. enum custom_keycodes {
  7. QWERTY = SAFE_RANGE
  8. };
  9. #define FNM MO(_FNM)
  10. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  11. [_QWERTY] = LAYOUT( /* Base */
  12. KC_GESC, 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,
  13. 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,
  14. KC_GRV, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
  15. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_DEL,
  16. KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, FNM, KC_RALT, KC_LEFT, KC_DOWN, KC_RIGHT),
  17. [_FNM] = LAYOUT( /* FN */
  18. KC_TRNS, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL,
  19. KC_TRNS, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, RESET,
  20. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_SPI, RGB_SPD, KC_HOME, KC_PGUP, EEP_RST,
  21. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_END, KC_PGDN, KC_VOLU, KC_MUTE,
  22. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MPRV, KC_VOLD, KC_MNXT)
  23. };
  24. void rgb_matrix_layer_helper (uint8_t red, uint8_t green, uint8_t blue) {
  25. for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
  26. if (HAS_FLAGS(g_led_config.flags[i], LED_FLAG_MODIFIER)) {
  27. rgb_matrix_set_color( i, red, green, blue );
  28. }
  29. }
  30. }
  31. void rgb_matrix_indicators_user(void)
  32. {
  33. if (!g_suspend_state) {
  34. switch (biton32(layer_state)) {
  35. case _QWERTY:
  36. rgb_matrix_layer_helper(0x00, 0x0F, 0xFF); break;
  37. case _FNM:
  38. rgb_matrix_layer_helper(0xF0, 0x00, 0xFF); break;
  39. }
  40. }
  41. switch (biton32(layer_state)) {
  42. case _FNM:
  43. rgb_matrix_set_color(0, 0x00, 0xFF, 0x00);
  44. rgb_matrix_set_color(1, 0x00, 0x00, 0x00);
  45. rgb_matrix_set_color(1, 0x00, 0xFF, 0x00);
  46. rgb_matrix_set_color(2, 0x00, 0xFF, 0x00);
  47. rgb_matrix_set_color(3, 0x00, 0xFF, 0x00);
  48. rgb_matrix_set_color(4, 0x00, 0xFF, 0x00);
  49. rgb_matrix_set_color(5, 0x00, 0x00, 0x00);
  50. rgb_matrix_set_color(6, 0x00, 0x00, 0x00);
  51. rgb_matrix_set_color(7, 0x00, 0x00, 0x00);
  52. rgb_matrix_set_color(8, 0x00, 0x00, 0x00);
  53. rgb_matrix_set_color(9, 0xFF, 0xFF, 0x00);
  54. rgb_matrix_set_color(10, 0xFF, 0xFF, 0x00);
  55. rgb_matrix_set_color(11, 0xFF, 0xFF, 0x00);
  56. rgb_matrix_set_color(12, 0xFF, 0xFF, 0x00);
  57. rgb_matrix_set_color(14, 0x00, 0x00, 0xFF);
  58. rgb_matrix_set_color(15, 0x00, 0x00, 0x00);
  59. rgb_matrix_set_color(16, 0x00, 0x00, 0x00);
  60. rgb_matrix_set_color(17, 0x00, 0xFF, 0x00);
  61. rgb_matrix_set_color(18, 0x00, 0xFF, 0x00);
  62. rgb_matrix_set_color(19, 0x00, 0xFF, 0x00);
  63. rgb_matrix_set_color(20, 0x00, 0x00, 0x00);
  64. rgb_matrix_set_color(21, 0x00, 0x00, 0x00);
  65. rgb_matrix_set_color(22, 0x00, 0x00, 0x00);
  66. rgb_matrix_set_color(23, 0x00, 0x00, 0x00);
  67. rgb_matrix_set_color(24, 0xFF, 0xFF, 0x00);
  68. rgb_matrix_set_color(25, 0xFF, 0xFF, 0x00);
  69. rgb_matrix_set_color(26, 0xFF, 0xFF, 0x00);
  70. rgb_matrix_set_color(27, 0x00, 0x00, 0x00);
  71. rgb_matrix_set_color(28, 0x00, 0xFF, 0x00);
  72. rgb_matrix_set_color(29, 0x00, 0x00, 0x00);
  73. rgb_matrix_set_color(30, 0x00, 0xFF, 0x00);
  74. rgb_matrix_set_color(31, 0x00, 0xFF, 0x00);
  75. rgb_matrix_set_color(32, 0x00, 0xFF, 0x00);
  76. rgb_matrix_set_color(33, 0x00, 0x00, 0x00);
  77. rgb_matrix_set_color(34, 0x00, 0x00, 0x00);
  78. rgb_matrix_set_color(35, 0x00, 0x00, 0x00);
  79. rgb_matrix_set_color(36, 0x00, 0x00, 0x00);
  80. rgb_matrix_set_color(37, 0xFF, 0xFF, 0x00);
  81. rgb_matrix_set_color(38, 0xFF, 0xFF, 0x00);
  82. rgb_matrix_set_color(39, 0xFF, 0xFF, 0x00);
  83. rgb_matrix_set_color(40, 0x00, 0x00, 0x00);
  84. rgb_matrix_set_color(41, 0x00, 0x00, 0x00);
  85. rgb_matrix_set_color(42, 0x00, 0x00, 0x00);
  86. rgb_matrix_set_color(43, 0x00, 0xFF, 0x00);
  87. rgb_matrix_set_color(44, 0x00, 0xFF, 0x00);
  88. rgb_matrix_set_color(45, 0x00, 0xFF, 0x00);
  89. rgb_matrix_set_color(46, 0x00, 0x00, 0x00);
  90. rgb_matrix_set_color(47, 0x00, 0x00, 0x00);
  91. rgb_matrix_set_color(48, 0x00, 0x00, 0x00);
  92. rgb_matrix_set_color(49, 0x00, 0x00, 0x00);
  93. rgb_matrix_set_color(50, 0xFF, 0xFF, 0x00);
  94. rgb_matrix_set_color(51, 0xFF, 0xFF, 0x00);
  95. rgb_matrix_set_color(52, 0xFF, 0xFF, 0x00);
  96. rgb_matrix_set_color(53, 0x00, 0x00, 0x00);
  97. rgb_matrix_set_color(54, 0x00, 0x00, 0x00);
  98. rgb_matrix_set_color(55, 0x00, 0x00, 0x00);
  99. rgb_matrix_set_color(56, 0x00, 0x00, 0x00);
  100. rgb_matrix_set_color(57, 0x00, 0xFF, 0x00);
  101. rgb_matrix_set_color(58, 0x00, 0xFF, 0x00);
  102. rgb_matrix_set_color(59, 0xFF, 0x00, 0x00);
  103. rgb_matrix_set_color(60, 0xFF, 0xFF, 0x00);
  104. rgb_matrix_set_color(61, 0xFF, 0xFF, 0x00);
  105. rgb_matrix_set_color(62, 0x00, 0x00, 0x00);
  106. break;
  107. }
  108. }
  109. void matrix_init_user(void)
  110. {
  111. //user initialization
  112. }
  113. void matrix_scan_user(void)
  114. {
  115. //user matrix
  116. }
  117. bool process_record_user(uint16_t keycode, keyrecord_t* record)
  118. {
  119. return true;
  120. }