logo

qmk_firmware

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

quick17.c (1161B)


  1. /* Copyright 2021 yushakobo
  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. {
  20. {12, 13, 14, 15, 16, 17},
  21. {0, 1, 11, 10, 9, 8},
  22. {2, 3, 4, 5, 6, 7}
  23. },
  24. {
  25. {0,32}, {44,32}, {0,64}, {44,64}, {89,64}, {134,64},
  26. {179,64},{224,64},{224,32},{179,32},{134,32},{89,32},
  27. {0,0}, {44,0}, {89,0}, {134,0}, {179,0}, {224,0}
  28. },
  29. {
  30. 4, 4, 4, 4, 4, 4,
  31. 4, 4, 4, 4, 4, 4,
  32. 4, 4, 4, 4, 4, 4
  33. }
  34. };
  35. #endif