diff options
author | Joel Challis <git@zvecr.com> | 2022-01-29 14:28:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-29 14:28:13 +0000 |
commit | cc6017517d466ed2f7f409adda3066bc00930d44 (patch) | |
tree | 9ba6c74dbb68f86820cc0ceccf5dc7689b2863c2 | |
parent | 9e79f27547f5c3f291aec37b3d2f8cf3c54eeb47 (diff) | |
download | qmk_firmware-cc6017517d466ed2f7f409adda3066bc00930d44.tar.gz qmk_firmware-cc6017517d466ed2f7f409adda3066bc00930d44.zip |
Planck/Preonic - Enable default encoder behaviour on configurator (#16104)
-rw-r--r-- | keyboards/planck/planck.c | 20 | ||||
-rw-r--r-- | keyboards/preonic/preonic.c | 20 |
2 files changed, 40 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 | ||
diff --git a/keyboards/preonic/preonic.c b/keyboards/preonic/preonic.c index 16c99d9a8..2b5680520 100644 --- a/keyboards/preonic/preonic.c +++ b/keyboards/preonic/preonic.c | |||
@@ -7,3 +7,23 @@ const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = LAYOUT_preonic_grid( | |||
7 | 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, | 7 | 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
8 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 | 8 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 |
9 | ); | 9 | ); |
10 | |||
11 | #ifdef ENCODER_ENABLE | ||
12 | bool encoder_update_kb(uint8_t index, bool clockwise) { | ||
13 | if (!encoder_update_user(index, clockwise)) { return false; } | ||
14 | if (get_highest_layer(layer_state) > 0) { | ||
15 | if (clockwise) { | ||
16 | tap_code_delay(KC_VOLU, 10); | ||
17 | } else { | ||
18 | tap_code_delay(KC_VOLD, 10); | ||
19 | } | ||
20 | } else { | ||
21 | if (clockwise) { | ||
22 | tap_code(KC_PGDN); | ||
23 | } else { | ||
24 | tap_code(KC_PGUP); | ||
25 | } | ||
26 | } | ||
27 | return true; | ||
28 | } | ||
29 | #endif | ||