logo

qmk_firmware

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

v04.c (1280B)


  1. /* Copyright 2021 Takeshi Nishio
  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. #if defined(AUDIO_ENABLE) && defined(MUSIC_MAP)
  18. const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = {
  19. { 0, 47, 49, 51, 53, 55, 57, 59, 61, 0},
  20. {32, 0, 34, 36, 38, 40, 42, 44, 0, 0},
  21. {17, 19, 0, 21, 23, 25, 27, 29, 0, 0},
  22. { 1, 3, 5, 0, 7, 9, 11, 13, 15, 0},
  23. { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
  24. { 0, 48, 50, 52, 54, 0, 56, 58, 60, 62},
  25. { 0, 33, 35, 37, 39, 41, 0, 43, 45, 46},
  26. { 0, 18, 20, 22, 24, 26, 28, 0, 30, 31},
  27. { 0, 2, 4, 6, 8, 10, 12, 14, 0, 16},
  28. { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
  29. };
  30. #endif