summaryrefslogtreecommitdiff
path: root/keyboards/unison/v04/v04.c
blob: e0c4e8cee0996b3d94fdedeae69eb4387e70140a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Copyright 2021 Takeshi Nishio
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "quantum.h"

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