logo

qmk_firmware

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

red.c (1605B)


  1. /* Copyright 2023 @ 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[LED_MATRIX_LED_COUNT] = {
  20. /* Refer to SNLED27351 manual for these locations
  21. * driver
  22. * | LED address
  23. * | | */
  24. {0, CB6_CA1 },
  25. {0, CB6_CA2 },
  26. {0, CB6_CA3 },
  27. {0, CB6_CA4 },
  28. {0, CB6_CA5 },
  29. {0, CB6_CA6 },
  30. {0, CB5_CA1 },
  31. {0, CB5_CA2 },
  32. {0, CB5_CA3 },
  33. {0, CB5_CA4 },
  34. {0, CB5_CA5 },
  35. {0, CB5_CA6 },
  36. {0, CB5_CA7 },
  37. {0, CB4_CA1 },
  38. {0, CB4_CA2 },
  39. {0, CB4_CA3 },
  40. {0, CB4_CA4 },
  41. {0, CB4_CA5 },
  42. {0, CB4_CA6 },
  43. {0, CB3_CA1 },
  44. {0, CB3_CA2 },
  45. {0, CB3_CA3 },
  46. {0, CB3_CA4 },
  47. {0, CB3_CA5 },
  48. {0, CB3_CA6 },
  49. {0, CB2_CA1 },
  50. {0, CB2_CA3 },
  51. {0, CB2_CA4 },
  52. {0, CB2_CA5 },
  53. {0, CB2_CA6 },
  54. {0, CB1_CA1 },
  55. {0, CB1_CA3 },
  56. {0, CB1_CA4 },
  57. {0, CB1_CA5 },
  58. };
  59. #endif