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.

60 lines
2.9 KiB

  1. /* Copyright 2020 Swiftrax and Basekeys.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 RGB_MATRIX_ENABLE
  18. led_config_t g_led_config = { {
  19. { NO_LED, 70, 61, 52, 43, 34, 24, 14 },
  20. { 79, 69, 60, 51, 42, 33, 23, NO_LED },
  21. { NO_LED, 71, 62, 53, 44, 35, 25, 15 },
  22. { 78, 68, 59, 50, 41, 32, 22, NO_LED },
  23. { 77, 67, 58, 49, 40, 31, NO_LED, 16 },
  24. { NO_LED, 72, 63, 54, 45, 36, 26, NO_LED },
  25. { NO_LED, 73, 64, 55, 46, 37, 27, 17 },
  26. { 76, 66, 57, 48, 39, 30, 21, NO_LED },
  27. { NO_LED, 74, 56, NO_LED, NO_LED, 38, 28, 18 },
  28. { 75, 65, NO_LED, NO_LED, 47, 29, 20, 19 }
  29. }, {
  30. // Underglow
  31. { 218, 7 }, { 214, 45 }, { 180, 47 }, { 147, 50 }, { 94, 62 }, { 37, 51 }, { 4, 8 }, { 36, 15 },
  32. { 62, 18 }, { 78, 5 }, { 119, 7 }, { 145, 16 }, { 166, 3 }, { 200, 16 },
  33. //Per Key
  34. { 185, 11 }, { 191, 22 }, { 188, 33 }, { 200, 46 }, { 200, 57 }, { 212, 57 }, { 188, 57 }, { 181, 44 },
  35. { 176, 22 }, { 168, 11 }, { 155, 11 }, { 164, 22 }, { 169, 32 }, { 165, 44 }, { 172, 55 }, { 157, 54 },
  36. { 153, 44 }, { 156, 33 }, { 153, 22 }, { 142, 12 }, { 130, 13 }, { 138, 23 }, { 143, 33 }, { 140, 45 },
  37. { 137, 56 }, { 128, 47 }, { 132, 35 }, { 127, 25 }, { 119, 16 }, { 107, 17 }, { 115, 27 }, { 120, 37 },
  38. { 116, 48 }, { 117, 59 }, { 104, 51 }, { 109, 39 }, { 104, 29 }, { 86, 19 }, { 74, 16 }, { 78, 28 },
  39. { 79, 39 }, { 82, 50 }, { 73, 60 }, { 71, 48 }, { 67, 37 }, { 66, 26 }, { 63, 15 }, { 50, 12 },
  40. { 55, 24 }, { 55, 35 }, { 59, 47 }, { 50, 56 }, { 47, 45 }, { 43, 33 }, { 43, 22 }, { 39, 10 },
  41. { 25, 11 }, { 29, 22 }, { 30, 33 }, { 34, 44 }, { 24, 54 }, { 9, 55 }, { 15, 44 }, { 14, 33 },
  42. { 14, 22 }, { 14, 11 }
  43. }, {
  44. 2, 2, 2, 2, 2, 2, 2, 2,
  45. 2, 2, 2, 2, 2, 2,
  46. 4, 4, 4, 4, 4, 4, 4, 4,
  47. 4, 4, 4, 4, 4, 4, 4, 4,
  48. 4, 4, 4, 4, 4, 4, 4, 4,
  49. 4, 4, 4, 4, 4, 4, 4, 4,
  50. 4, 4, 4, 4, 4, 4, 4, 4,
  51. 4, 4, 4, 4, 4, 4, 4, 4,
  52. 4, 4, 4, 4, 4, 4, 4, 4,
  53. 4, 4, 4, 4, 4, 4, 4, 4,
  54. 4, 4
  55. } };
  56. #endif