logo

qmk_firmware

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

white.c (3148B)


  1. /* Copyright 2022 @ Keychron (https://www.keychron.com)
  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 "quantum.h"
  17. #ifdef LED_MATRIX_ENABLE
  18. // clang-format off
  19. const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = {
  20. /* Refer to SNLED27351 manual for these locations
  21. * driver
  22. * | LED address
  23. * | | */
  24. {0, CB6_CA1}, // esc
  25. {0, CB6_CA2}, // f1
  26. {0, CB6_CA3}, // f2
  27. {0, CB6_CA4}, // f3
  28. {0, CB6_CA5}, // f4
  29. {0, CB6_CA6}, // f4
  30. {0, CB6_CA7}, // f6
  31. {0, CB6_CA8}, // f7
  32. {0, CB6_CA9}, // f8
  33. {0, CB6_CA10}, // f9
  34. {0, CB6_CA11}, // f10
  35. {0, CB6_CA12}, // f11
  36. {0, CB6_CA13}, // f12
  37. {0, CB6_CA14}, // print
  38. {0, CB6_CA15}, // del
  39. {0, CB6_CA16}, // light
  40. {0, CB5_CA1}, // ~
  41. {0, CB5_CA2}, // 1!
  42. {0, CB5_CA3}, // 2@
  43. {0, CB5_CA4}, // 3#
  44. {0, CB5_CA5}, // 4$
  45. {0, CB5_CA6}, // 5%
  46. {0, CB5_CA7}, // 6^
  47. {0, CB5_CA8}, // 7&
  48. {0, CB5_CA9}, // 8*
  49. {0, CB5_CA10}, // 9(
  50. {0, CB5_CA11}, // 0)
  51. {0, CB5_CA12}, // -_
  52. {0, CB5_CA13}, // =+
  53. {0, CB5_CA14}, // back space
  54. {0, CB5_CA16}, // page up
  55. {0, CB4_CA1}, // tab
  56. {0, CB4_CA2}, // q
  57. {0, CB4_CA3}, // w
  58. {0, CB4_CA4}, // e
  59. {0, CB4_CA5}, // r
  60. {0, CB4_CA6}, // t
  61. {0, CB4_CA7}, // y
  62. {0, CB4_CA8}, // u
  63. {0, CB4_CA9}, // i
  64. {0, CB4_CA10}, // o
  65. {0, CB4_CA11}, // p
  66. {0, CB4_CA12}, // [{
  67. {0, CB4_CA13}, // ]}
  68. {0, CB4_CA14}, // |
  69. {0, CB4_CA16}, // page down
  70. {0, CB3_CA1}, // caps lock
  71. {0, CB3_CA2}, // a
  72. {0, CB3_CA3}, // s
  73. {0, CB3_CA4}, // d
  74. {0, CB3_CA5}, // f
  75. {0, CB3_CA6}, // g
  76. {0, CB3_CA7}, // h
  77. {0, CB3_CA8}, // j
  78. {0, CB3_CA9}, // k
  79. {0, CB3_CA10}, // l
  80. {0, CB3_CA11}, // ;:
  81. {0, CB3_CA12}, // '"
  82. {0, CB3_CA14}, // enter
  83. {0, CB3_CA16}, // home
  84. {0, CB2_CA1}, // left shift
  85. {0, CB2_CA3}, // z
  86. {0, CB2_CA4}, // x
  87. {0, CB2_CA5}, // c
  88. {0, CB2_CA6}, // v
  89. {0, CB2_CA7}, // b
  90. {0, CB2_CA8}, // b
  91. {0, CB2_CA9}, // n
  92. {0, CB2_CA10}, // m
  93. {0, CB2_CA11}, // ,<
  94. {0, CB2_CA12}, // .>
  95. {0, CB2_CA13}, // right shift
  96. {0, CB2_CA14}, // up
  97. {0, CB2_CA16}, // end
  98. {0, CB1_CA1}, // left
  99. {0, CB1_CA2}, // left command
  100. {0, CB1_CA3}, // left optin
  101. {0, CB1_CA7}, // space
  102. {0, CB1_CA10}, // right command
  103. {0, CB1_CA11}, // fn
  104. {0, CB1_CA12}, // right ctrl
  105. {0, CB1_CA13}, // left
  106. {0, CB1_CA14}, // down
  107. {0, CB1_CA16}, // right
  108. };
  109. #endif