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/minimacro5 | |
| 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/minimacro5')
| -rw-r--r-- | keyboards/minimacro5/keymaps/default/keymap.c | 3 | ||||
| -rw-r--r-- | keyboards/minimacro5/keymaps/kabraxcis/keymap.c | 3 | ||||
| -rw-r--r-- | keyboards/minimacro5/keymaps/media/keymap.c | 3 | ||||
| -rw-r--r-- | keyboards/minimacro5/keymaps/voaraq/keymap.c | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/keyboards/minimacro5/keymaps/default/keymap.c b/keyboards/minimacro5/keymaps/default/keymap.c index acd7f3283..d2f2910d7 100644 --- a/keyboards/minimacro5/keymaps/default/keymap.c +++ b/keyboards/minimacro5/keymaps/default/keymap.c | |||
| @@ -4,7 +4,7 @@ enum layers { | |||
| 4 | _MAIN, | 4 | _MAIN, |
| 5 | }; | 5 | }; |
| 6 | 6 | ||
| 7 | void encoder_update_user(uint8_t index, bool clockwise) { | 7 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| 8 | if (index == 0) { /* First encoder*/ | 8 | if (index == 0) { /* First encoder*/ |
| 9 | if (clockwise) { | 9 | if (clockwise) { |
| 10 | tap_code(KC_1); | 10 | tap_code(KC_1); |
| @@ -36,6 +36,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
| 36 | tap_code(KC_0); | 36 | tap_code(KC_0); |
| 37 | } | 37 | } |
| 38 | } | 38 | } |
| 39 | return true; | ||
| 39 | } | 40 | } |
| 40 | 41 | ||
| 41 | // | 42 | // |
diff --git a/keyboards/minimacro5/keymaps/kabraxcis/keymap.c b/keyboards/minimacro5/keymaps/kabraxcis/keymap.c index a65bc9ff4..6b7026ce2 100644 --- a/keyboards/minimacro5/keymaps/kabraxcis/keymap.c +++ b/keyboards/minimacro5/keymaps/kabraxcis/keymap.c | |||
| @@ -20,7 +20,7 @@ enum layers { | |||
| 20 | _MAIN, | 20 | _MAIN, |
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | void encoder_update_user(uint8_t index, bool clockwise) { | 23 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| 24 | if (index == 0) { /* First encoder*/ | 24 | if (index == 0) { /* First encoder*/ |
| 25 | if (clockwise) { | 25 | if (clockwise) { |
| 26 | tap_code(KC_VOLU); | 26 | tap_code(KC_VOLU); |
| @@ -52,6 +52,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
| 52 | tap_code(KC_VOLD); | 52 | tap_code(KC_VOLD); |
| 53 | } | 53 | } |
| 54 | } | 54 | } |
| 55 | return true; | ||
| 55 | } | 56 | } |
| 56 | 57 | ||
| 57 | // | 58 | // |
diff --git a/keyboards/minimacro5/keymaps/media/keymap.c b/keyboards/minimacro5/keymaps/media/keymap.c index f36954b07..9f2183887 100644 --- a/keyboards/minimacro5/keymaps/media/keymap.c +++ b/keyboards/minimacro5/keymaps/media/keymap.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | #define _MAIN 0 | 3 | #define _MAIN 0 |
| 4 | 4 | ||
| 5 | void encoder_update_user(uint8_t index, bool clockwise) { | 5 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| 6 | if (index == 0) { /* First encoder*/ | 6 | if (index == 0) { /* First encoder*/ |
| 7 | if (clockwise) { | 7 | if (clockwise) { |
| 8 | tap_code(KC_VOLU); | 8 | tap_code(KC_VOLU); |
| @@ -34,6 +34,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
| 34 | tap_code(KC_0); | 34 | tap_code(KC_0); |
| 35 | } | 35 | } |
| 36 | } | 36 | } |
| 37 | return true; | ||
| 37 | } | 38 | } |
| 38 | 39 | ||
| 39 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //buttion closest to usb is first | 40 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //buttion closest to usb is first |
diff --git a/keyboards/minimacro5/keymaps/voaraq/keymap.c b/keyboards/minimacro5/keymaps/voaraq/keymap.c index e0dca9777..9af37167d 100644 --- a/keyboards/minimacro5/keymaps/voaraq/keymap.c +++ b/keyboards/minimacro5/keymaps/voaraq/keymap.c | |||
| @@ -20,7 +20,7 @@ enum layers { | |||
| 20 | _MAIN, | 20 | _MAIN, |
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | void encoder_update_user(uint8_t index, bool clockwise) { | 23 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| 24 | if (index == 0) { /* First encoder*/ | 24 | if (index == 0) { /* First encoder*/ |
| 25 | if (clockwise) { | 25 | if (clockwise) { |
| 26 | tap_code(KC_1); | 26 | tap_code(KC_1); |
| @@ -52,6 +52,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
| 52 | tap_code(KC_VOLD); | 52 | tap_code(KC_VOLD); |
| 53 | } | 53 | } |
| 54 | } | 54 | } |
| 55 | return true; | ||
| 55 | } | 56 | } |
| 56 | 57 | ||
| 57 | // | 58 | // |
