logo

qmk_firmware

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

we27.c (1324B)


  1. /* Copyright 2021 @wekey
  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. #define __ NO_LED
  19. led_config_t g_led_config = { {
  20. { 0, 1, 2, 3, 4 },
  21. { 9, 8, 7, 6, 5 },
  22. { 10, 11, 12, 13, 14 },
  23. { 18, 17, 16, 15, __ },
  24. { 19, 20, 21, 22, 23 },
  25. { 26, 25, __, 24, __ }
  26. }, {
  27. {0,1},{56,1},{112,1},{168,1},{224,1},
  28. {0,16},{56,16},{112,16},{168,16},{224,16},
  29. {0,28},{56,28},{112,28},{168,28},{224,28},
  30. {0,40},{56,40},{112,40},{168,40},
  31. {0,52},{56,52},{112,52},{168,52},{224,52},
  32. {0,64},{56,64},{168,64}
  33. }, {
  34. 1, 1, 1, 1, 1,
  35. 1, 1, 4, 4, 4,
  36. 1, 4, 4, 4, 4,
  37. 1, 4, 4, 4,
  38. 1, 4, 4, 4, 4,
  39. 1, 4, 4
  40. } };
  41. #endif