You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.7 KiB
65 lines
1.7 KiB
5 years ago
|
#include QMK_KEYBOARD_H
|
||
|
#include "layers.h"
|
||
|
|
||
|
#ifdef ENCODER_ENABLE
|
||
|
|
||
4 years ago
|
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||
5 years ago
|
if (index == 0) {
|
||
|
switch (get_highest_layer(layer_state)) {
|
||
|
case WORKMAN:
|
||
|
if (clockwise) {
|
||
|
tap_code(KC_VOLU);
|
||
|
} else {
|
||
|
tap_code(KC_VOLD);
|
||
|
}
|
||
|
break;
|
||
|
case SYMBOLS:
|
||
|
case FN:
|
||
|
if (clockwise) {
|
||
|
tap_code(KC_PGDN);
|
||
|
} else {
|
||
|
tap_code(KC_PGUP);
|
||
|
}
|
||
|
break;
|
||
|
case NAV:
|
||
|
case RNAV:
|
||
|
default:
|
||
|
if (clockwise) {
|
||
|
tap_code16(C(A(KC_RIGHT)));
|
||
|
} else {
|
||
|
tap_code16(C(A(KC_LEFT)));
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
} else if (index == 1) {
|
||
|
switch (get_highest_layer(layer_state)) {
|
||
|
case WORKMAN:
|
||
|
if (clockwise) {
|
||
|
tap_code(KC_BRIU);
|
||
|
} else {
|
||
|
tap_code(KC_BRID);
|
||
|
}
|
||
|
break;
|
||
|
case SYMBOLS:
|
||
|
case FN:
|
||
|
if (clockwise) {
|
||
|
tap_code16(C(KC_RIGHT));
|
||
|
} else {
|
||
|
tap_code16(C(KC_LEFT));
|
||
|
}
|
||
|
break;
|
||
|
case NAV:
|
||
|
case RNAV:
|
||
|
default:
|
||
|
if (clockwise) {
|
||
|
tap_code16(C(KC_TAB));
|
||
|
} else {
|
||
|
tap_code16(C(S(KC_TAB)));
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
4 years ago
|
return true;
|
||
5 years ago
|
}
|
||
|
#endif
|