]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap_midi.c
46049b98751737794b2e43ceaf001caef6ffba26
[qmk_firmware.git] / quantum / keymap_midi.c
1 /*
2 Copyright 2015 Jack Humbert <jack.humb@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include "keymap.h"
19 #include "keymap_midi.h"
20
21 uint8_t starting_note = 0x0C;
22 int offset = 7;
23
24 void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
25 {
26         if (id != 0) {
27             if (record->event.pressed) {
28                 midi_send_noteon(&midi_device, opt, (id & 0xFF), 127);
29             } else {
30                 midi_send_noteoff(&midi_device, opt, (id & 0xFF), 127);
31             }
32         }
33
34     if (record->event.key.col == (MATRIX_COLS - 1) && record->event.key.row == (MATRIX_ROWS - 1)) {
35         if (record->event.pressed) {
36             starting_note++;
37             play_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[0 + offset])/12.0+(MATRIX_ROWS - 1)), 0xC);
38             midi_send_cc(&midi_device, 0, 0x7B, 0);
39             midi_send_cc(&midi_device, 1, 0x7B, 0);
40             midi_send_cc(&midi_device, 2, 0x7B, 0);
41             midi_send_cc(&midi_device, 3, 0x7B, 0);
42             midi_send_cc(&midi_device, 4, 0x7B, 0);
43             return;
44         } else {
45             stop_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[0 + offset])/12.0+(MATRIX_ROWS - 1)));
46             stop_all_notes();
47             return;
48         }
49     }
50     if (record->event.key.col == (MATRIX_COLS - 2) && record->event.key.row == (MATRIX_ROWS - 1)) {
51         if (record->event.pressed) {
52             starting_note--;
53             play_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[0 + offset])/12.0+(MATRIX_ROWS - 1)), 0xC);
54             midi_send_cc(&midi_device, 0, 0x7B, 0);
55             midi_send_cc(&midi_device, 1, 0x7B, 0);
56             midi_send_cc(&midi_device, 2, 0x7B, 0);
57             midi_send_cc(&midi_device, 3, 0x7B, 0);
58             midi_send_cc(&midi_device, 4, 0x7B, 0);
59             return;
60         } else {
61             stop_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[0 + offset])/12.0+(MATRIX_ROWS - 1)));
62             stop_all_notes();
63             return;
64         }
65     }
66
67     if (record->event.key.col == (MATRIX_COLS - 3) && record->event.key.row == (MATRIX_ROWS - 1) && record->event.pressed) {
68         offset++;
69         midi_send_cc(&midi_device, 0, 0x7B, 0);
70         midi_send_cc(&midi_device, 1, 0x7B, 0);
71         midi_send_cc(&midi_device, 2, 0x7B, 0);
72         midi_send_cc(&midi_device, 3, 0x7B, 0);
73         midi_send_cc(&midi_device, 4, 0x7B, 0);
74         stop_all_notes();
75         for (int i = 0; i <= 7; i++) {
76             play_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[i + offset])/12.0+(MATRIX_ROWS - 1)), 0xC);
77             _delay_us(80000);
78             stop_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[i + offset])/12.0+(MATRIX_ROWS - 1)));
79             _delay_us(8000);
80         }
81         return;
82     }
83     if (record->event.key.col == (MATRIX_COLS - 4) && record->event.key.row == (MATRIX_ROWS - 1) && record->event.pressed) {
84         offset--;
85         midi_send_cc(&midi_device, 0, 0x7B, 0);
86         midi_send_cc(&midi_device, 1, 0x7B, 0);
87         midi_send_cc(&midi_device, 2, 0x7B, 0);
88         midi_send_cc(&midi_device, 3, 0x7B, 0);
89         midi_send_cc(&midi_device, 4, 0x7B, 0);
90         stop_all_notes();
91         for (int i = 0; i <= 7; i++) {
92             play_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[i + offset])/12.0+(MATRIX_ROWS - 1)), 0xC);
93             _delay_us(80000);
94             stop_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[i + offset])/12.0+(MATRIX_ROWS - 1)));
95             _delay_us(8000);
96         }
97         return;
98     }
99
100     if (record->event.pressed) {
101         // midi_send_noteon(&midi_device, record->event.key.row, starting_note + SCALE[record->event.key.col], 127);
102         // midi_send_noteon(&midi_device, 0, (starting_note + SCALE[record->event.key.col + offset])+12*(MATRIX_ROWS - record->event.key.row), 127);
103         play_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[record->event.key.col + offset])/12.0+(MATRIX_ROWS - record->event.key.row)), 0xF);
104     } else {
105         // midi_send_noteoff(&midi_device, record->event.key.row, starting_note + SCALE[record->event.key.col], 127);
106         // midi_send_noteoff(&midi_device, 0, (starting_note + SCALE[record->event.key.col + offset])+12*(MATRIX_ROWS - record->event.key.row), 127);
107         stop_note(((double)261.626)*pow(2.0, -1.0)*pow(2.0,(starting_note + SCALE[record->event.key.col + offset])/12.0+(MATRIX_ROWS - record->event.key.row)));
108     }
109 }