diff options
Diffstat (limited to 'keyboards/planck/planck.c')
-rw-r--r-- | keyboards/planck/planck.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/keyboards/planck/planck.c b/keyboards/planck/planck.c index a17036fcf..e9bd90bdf 100644 --- a/keyboards/planck/planck.c +++ b/keyboards/planck/planck.c | |||
@@ -27,3 +27,23 @@ const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = LAYOUT_planck_grid( | |||
27 | 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, | 27 | 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
28 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 | 28 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 |
29 | ); | 29 | ); |
30 | |||
31 | #ifdef ENCODER_ENABLE | ||
32 | bool encoder_update_kb(uint8_t index, bool clockwise) { | ||
33 | if (!encoder_update_user(index, clockwise)) { return false; } | ||
34 | if (get_highest_layer(layer_state) > 0) { | ||
35 | if (clockwise) { | ||
36 | tap_code_delay(KC_VOLU, 10); | ||
37 | } else { | ||
38 | tap_code_delay(KC_VOLD, 10); | ||
39 | } | ||
40 | } else { | ||
41 | if (clockwise) { | ||
42 | tap_code(KC_PGDN); | ||
43 | } else { | ||
44 | tap_code(KC_PGUP); | ||
45 | } | ||
46 | } | ||
47 | return true; | ||
48 | } | ||
49 | #endif | ||