diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-08-25 17:06:38 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-08-25 17:06:38 -0400 |
commit | 9b46f4021e6c96ed4697924a90a8b2b6dd0b0acc (patch) | |
tree | 8af6a876c0b548920dc664b8a6be83a1f479460e /keyboard/planck/keymap_midi.c | |
parent | e6dd47db453968271dcd5e89c62c5258796511bc (diff) | |
download | firmware-9b46f4021e6c96ed4697924a90a8b2b6dd0b0acc.tar.gz firmware-9b46f4021e6c96ed4697924a90a8b2b6dd0b0acc.tar.bz2 firmware-9b46f4021e6c96ed4697924a90a8b2b6dd0b0acc.zip |
midi on planck
Diffstat (limited to 'keyboard/planck/keymap_midi.c')
-rw-r--r-- | keyboard/planck/keymap_midi.c | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/keyboard/planck/keymap_midi.c b/keyboard/planck/keymap_midi.c index 81f84bcd7..a8913dc1d 100644 --- a/keyboard/planck/keymap_midi.c +++ b/keyboard/planck/keymap_midi.c @@ -19,11 +19,38 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "keymap_midi.h" #include <lufa.h> +uint8_t starting_note = 0x0C; + void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { + if (id != 0) { + if (record->event.pressed) { + midi_send_noteon(&midi_device, opt, (id & 0xFF), 127); + } else { + midi_send_noteoff(&midi_device, opt, (id & 0xFF), 127); + } + } + + if (record->event.key.col == (MATRIX_COLS - 1) && record->event.key.row == (MATRIX_ROWS - 1) && record->event.pressed) { + starting_note++; + midi_send_cc(&midi_device, 0, 0x7B, 0); + midi_send_cc(&midi_device, 1, 0x7B, 0); + midi_send_cc(&midi_device, 2, 0x7B, 0); + midi_send_cc(&midi_device, 3, 0x7B, 0); + midi_send_cc(&midi_device, 4, 0x7B, 0); + } + if (record->event.key.col == (MATRIX_COLS - 2) && record->event.key.row == (MATRIX_ROWS - 1) && record->event.pressed) { + starting_note--; + midi_send_cc(&midi_device, 0, 0x7B, 0); + midi_send_cc(&midi_device, 1, 0x7B, 0); + midi_send_cc(&midi_device, 2, 0x7B, 0); + midi_send_cc(&midi_device, 3, 0x7B, 0); + midi_send_cc(&midi_device, 4, 0x7B, 0); + } + if (record->event.pressed) { - midi_send_noteon(&midi_device, opt, (id & 0xFF), 127); + midi_send_noteon(&midi_device, record->event.key.row, starting_note + SCALE[record->event.key.col], 127); } else { - midi_send_noteoff(&midi_device, opt, (id & 0xFF), 127); + midi_send_noteoff(&midi_device, record->event.key.row, starting_note + SCALE[record->event.key.col], 127); } }
\ No newline at end of file |