~ruther/qmk_firmware

650864c27d2477f3506912063c7d8adf5b4e6a28 — QMK Bot 2 years ago 8d6bf19 + a7febfb
Merge remote-tracking branch 'origin/master' into develop
1 files changed, 2 insertions(+), 2 deletions(-)

M docs/feature_midi.md
M docs/feature_midi.md => docs/feature_midi.md +2 -2
@@ 60,9 60,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
    switch (keycode) {
        case MIDI_CC80:
            if (record->event.pressed) {
                midi_send_cc(&midi_device, midi_config.channel, 80, ON);
                midi_send_cc(&midi_device, midi_config.channel, 80, MIDI_CC_ON);
            } else {
                midi_send_cc(&midi_device, midi_config.channel, 80, OFF);
                midi_send_cc(&midi_device, midi_config.channel, 80, MIDI_CC_OFF);
            }
            return true;
    }