1
0
Fork 0

minor updates - new PNG

This commit is contained in:
Stephan Bösebeck 2016-04-03 23:48:22 +02:00
parent 8d39263d24
commit dee6a4338a
2 changed files with 20 additions and 16 deletions

View file

@ -271,14 +271,9 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
static uint16_t start; static uint16_t start;
// MACRODOWN only works in this function // MACRODOWN only works in this function
switch(id) { switch(id) {
case 0: case M_CTRL_CMDV:
if (record->event.pressed) { //Macro description: long press CTRL, type CMD-V
register_code(KC_RSFT); //Macro type: LT
} else {
unregister_code(KC_RSFT);
}
break;
case 1:
if (record->event.pressed) { if (record->event.pressed) {
start = timer_read(); start = timer_read();
return MACRO(D(LCTRL), END); return MACRO(D(LCTRL), END);
@ -290,7 +285,10 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
} }
} }
break; break;
case 2: //End Macro
case M_CTRL_CMDC:
//Macro description:
//Macro type: LT
if (record->event.pressed) { if (record->event.pressed) {
start = timer_read(); start = timer_read();
return MACRO(D(LCTRL),END); return MACRO(D(LCTRL),END);
@ -302,7 +300,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
} }
} }
break; break;
case 3: case M_MEH_SH_ACUT:
if (record->event.pressed) { if (record->event.pressed) {
start = timer_read(); start = timer_read();
return MACRO(D(LCTRL),D(LSFT),D(LALT),END); return MACRO(D(LCTRL),D(LSFT),D(LALT),END);
@ -314,6 +312,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
} }
} }
break; break;
case M_LGUI_SHFT: case M_LGUI_SHFT:
if (record->event.pressed){ if (record->event.pressed){
return MACRO(D(LGUI),D(LSFT),END); return MACRO(D(LGUI),D(LSFT),END);
@ -358,6 +357,8 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
} }
break; break;
case SM_SMILE: case SM_SMILE:
//MAcro description: :-)
//Macro type: MACRO
if (record->event.pressed) { if (record->event.pressed) {
return MACRO(D(LSFT),T(DOT),U(LSFT),T(SLSH),D(LSFT),T(9),U(LSFT),END); return MACRO(D(LSFT),T(DOT),U(LSFT),T(SLSH),D(LSFT),T(9),U(LSFT),END);
} }
@ -401,11 +402,14 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
} }
break; break;
case M_TOGGLE_5: case M_TOGGLE_5:
//Macro description: Toggle LAyer 5 (Egoshooter)
//Macro type: LToggle
if (record->event.pressed){ if (record->event.pressed){
layer_state ^= (1<<5); layer_state ^= (1<<5);
layer_state &= (1<<5); layer_state &= (1<<5);
} }
break; break;
//Macro End
} }
return MACRO_NONE; return MACRO_NONE;
}; };
@ -426,21 +430,21 @@ void matrix_scan_user(void) {
ergodox_right_led_3_off(); ergodox_right_led_3_off();
switch (layer) { switch (layer) {
// TODO: Make this relevant to the ErgoDox EZ. // TODO: Make this relevant to the ErgoDox EZ.
case 1: case SYMB:
ergodox_right_led_1_on(); ergodox_right_led_1_on();
break; break;
case 2: case MDIA:
ergodox_right_led_2_on(); ergodox_right_led_2_on();
break; break;
case 3: case SMLY:
ergodox_right_led_3_on(); ergodox_right_led_3_on();
break; break;
case 4: case NUMB:
ergodox_right_led_1_on(); ergodox_right_led_1_on();
ergodox_right_led_3_on(); ergodox_right_led_3_on();
//ergodox_board_led_on(); //ergodox_board_led_on();
break; break;
case 5: case EGOS:
ergodox_right_led_1_on(); ergodox_right_led_1_on();
ergodox_right_led_2_on(); ergodox_right_led_2_on();
ergodox_right_led_3_on(); ergodox_right_led_3_on();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 669 KiB

After

Width:  |  Height:  |  Size: 258 KiB