diff options
author | QMK Bot <hello@qmk.fm> | 2021-06-01 04:56:53 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-06-01 04:56:53 +0000 |
commit | d64a853b552885ed8d154793fc2506f727a670a7 (patch) | |
tree | 53a8fdf69cf462c8bbdef973a58e5471fc84633c /keyboards/rubi/rubi.c | |
parent | 554c36a0555998c57b78a5e66074b8292b0e9577 (diff) | |
parent | 5a06813b105277998b80771f094059047916f4e4 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/rubi/rubi.c')
-rw-r--r-- | keyboards/rubi/rubi.c | 35 |
1 files changed, 3 insertions, 32 deletions
diff --git a/keyboards/rubi/rubi.c b/keyboards/rubi/rubi.c index 6cdf8302c1..50e5fcf782 100644 --- a/keyboards/rubi/rubi.c +++ b/keyboards/rubi/rubi.c @@ -73,36 +73,7 @@ bool led_update_kb(led_t led_state) { return true; } -__attribute__ ((weak)) void encoder_update_user(uint8_t index, bool clockwise) { - if (index == 0) { - if (get_highest_layer(layer_state) == 0) { - uint16_t mapped_code = 0; - if (clockwise) { - mapped_code = handle_encoder_cw(); - } else { - mapped_code = handle_encoder_ccw(); - } - if (mapped_code != 0) { - tap_code16(mapped_code); - } - } else { - if (clockwise) { - if (oled_mode == OLED_MODE_CALC) { - handle_encoder_cw(); - } else if (oled_mode == OLED_MODE_DEFAULT) { - change_encoder_mode(false); - } - } else { - if (oled_mode == OLED_MODE_CALC) { - handle_encoder_ccw(); - } else if (oled_mode == OLED_MODE_DEFAULT) { - change_encoder_mode(true); - } - } - } - } -} - -void encoder_update_kb(uint8_t index, bool clockwise) { - encoder_update_user(index, clockwise); +bool encoder_update_kb(uint8_t index, bool clockwise) { + if (!encoder_update_user(index, clockwise)) { return false; } + return true; } |