This commit is contained in:
Jack Humbert 2015-08-21 10:46:53 -04:00
parent fb4fe52c0a
commit 04885a3b44
40 changed files with 3111 additions and 38 deletions

View file

@ -1,6 +1,7 @@
#include "extended_keymap_common.h"
#include "backlight.h"
#include "lufa.h"
#include "debug.h"
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = { /* Qwerty */
@ -51,18 +52,12 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
switch(id) {
case 0:
if (record->event.pressed) {
if (!&midi_device) {
register_code(KC_RSFT);
} else {
midi_send_noteon(&midi_device, 1, 64, 127);
}
register_code(KC_RSFT);
midi_send_noteon(&midi_device, 1, 64, 127);
backlight_step();
} else {
if (!&midi_device) {
unregister_code(KC_RSFT);
} else {
midi_send_noteoff(&midi_device, 1, 64, 127);
}
unregister_code(KC_RSFT);
midi_send_noteoff(&midi_device, 1, 64, 127);
}
break;
}