diff options
| author | Drashna Jaelre <drashna@live.com> | 2021-05-21 23:17:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-21 23:17:32 -0700 |
| commit | a0fed0ea176d1c986e40fc4981b900509c90d66e (patch) | |
| tree | ee12f5943046015ea0dce8e2a30a68bc8eb99dbe /keyboards/arrayperipherals | |
| parent | 76c23b15abc824f867b48d8d5100dced2417d336 (diff) | |
| download | qmk_firmware-a0fed0ea176d1c986e40fc4981b900509c90d66e.tar.gz qmk_firmware-a0fed0ea176d1c986e40fc4981b900509c90d66e.zip | |
Convert Encoder callbacks to be boolean functions (#12805)
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/arrayperipherals')
| -rw-r--r-- | keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c | 3 | ||||
| -rw-r--r-- | keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c b/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c index cf4433d8c..6a48a3102 100644 --- a/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c +++ b/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c | |||
| @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 17 | 17 | ||
| 18 | #include QMK_KEYBOARD_H | 18 | #include QMK_KEYBOARD_H |
| 19 | 19 | ||
| 20 | void encoder_update_user(uint8_t index, bool clockwise) { | 20 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| 21 | if (index == 0) { /* First encoder */ | 21 | if (index == 0) { /* First encoder */ |
| 22 | if (clockwise) { | 22 | if (clockwise) { |
| 23 | tap_code(KC_MS_WH_UP); | 23 | tap_code(KC_MS_WH_UP); |
| @@ -25,6 +25,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
| 25 | tap_code(KC_MS_WH_DOWN); | 25 | tap_code(KC_MS_WH_DOWN); |
| 26 | } | 26 | } |
| 27 | } | 27 | } |
| 28 | return true; | ||
| 28 | } | 29 | } |
| 29 | 30 | ||
| 30 | // | 31 | // |
diff --git a/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c b/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c index d419050a3..87739b377 100644 --- a/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c +++ b/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c | |||
| @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 17 | 17 | ||
| 18 | #include QMK_KEYBOARD_H | 18 | #include QMK_KEYBOARD_H |
| 19 | 19 | ||
| 20 | void encoder_update_user(uint8_t index, bool clockwise) { | 20 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| 21 | if (index == 0) { /* First encoder */ | 21 | if (index == 0) { /* First encoder */ |
| 22 | if (clockwise) { | 22 | if (clockwise) { |
| 23 | tap_code(KC_MS_WH_UP); | 23 | tap_code(KC_MS_WH_UP); |
| @@ -25,6 +25,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
| 25 | tap_code(KC_MS_WH_DOWN); | 25 | tap_code(KC_MS_WH_DOWN); |
| 26 | } | 26 | } |
| 27 | } | 27 | } |
| 28 | return true; | ||
| 28 | } | 29 | } |
| 29 | 30 | ||
| 30 | // | 31 | // |
