thirty.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Copyright 2022 Leo Deng (@myst729)
  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 "thirty.h"
  17. #ifdef RGB_MATRIX_ENABLE
  18. led_config_t g_led_config = {
  19. {
  20. /* Key Matrix to LED Index */
  21. { 0, 1, 2, 3, 4 },
  22. { 9, 8, 7, 6, 5 },
  23. { 10, 11, 12, 13, 14 },
  24. { 29, 28, 27, 26, 25 },
  25. { 20, 21, 22, 23, 24 },
  26. { 19, 18, 17, 16, 15 },
  27. },
  28. {
  29. /* LED Index to Physical Position */
  30. // Switch LEDs
  31. {4,4}, {28,4}, {52,4}, {76,4}, {100,4},
  32. {100,32}, {76,32}, {52,32}, {28,32}, {4,32},
  33. {4,60}, {28,60}, {52,60}, {76,60}, {100,60},
  34. {124,60}, {148,60}, {172,60}, {196,60}, {220,60},
  35. {220,32}, {196,32}, {172,32}, {148,32}, {124,32},
  36. {124,4}, {148,4}, {172,4}, {196,4}, {220,4},
  37. // Underglow LEDs
  38. },
  39. {
  40. /* LED Index to Flag */
  41. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  42. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  43. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
  44. }
  45. };
  46. #endif