aboutsummaryrefslogtreecommitdiff
path: root/keyboards/swiftrax
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-05-21 23:17:32 -0700
committerGitHub <noreply@github.com>2021-05-21 23:17:32 -0700
commita0fed0ea176d1c986e40fc4981b900509c90d66e (patch)
treeee12f5943046015ea0dce8e2a30a68bc8eb99dbe /keyboards/swiftrax
parent76c23b15abc824f867b48d8d5100dced2417d336 (diff)
downloadqmk_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/swiftrax')
-rw-r--r--keyboards/swiftrax/retropad/keymaps/default/keymap.c7
-rw-r--r--keyboards/swiftrax/retropad/keymaps/via/keymap.c7
2 files changed, 8 insertions, 6 deletions
diff --git a/keyboards/swiftrax/retropad/keymaps/default/keymap.c b/keyboards/swiftrax/retropad/keymaps/default/keymap.c
index 8b9992e1d..6fd2ff5da 100644
--- a/keyboards/swiftrax/retropad/keymaps/default/keymap.c
+++ b/keyboards/swiftrax/retropad/keymaps/default/keymap.c
@@ -33,11 +33,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
33 KC_END, KC_PGDN), 33 KC_END, KC_PGDN),
34}; 34};
35 35
36void encoder_update_user(uint8_t index, bool clockwise) { 36bool encoder_update_user(uint8_t index, bool clockwise) {
37 if(IS_LAYER_ON(2)){ 37 if(IS_LAYER_ON(2)){
38 if (clockwise) 38 if (clockwise)
39 tap_code(KC_LEFT); 39 tap_code(KC_LEFT);
40 else 40 else
41 tap_code(KC_RGHT); 41 tap_code(KC_RGHT);
42 } 42 }
43 else{ 43 else{
@@ -46,6 +46,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
46 else 46 else
47 tap_code(KC_VOLD); 47 tap_code(KC_VOLD);
48 } 48 }
49 return true;
49} 50}
50 51
51void matrix_init_user(void) { 52void matrix_init_user(void) {
@@ -66,4 +67,4 @@ layer_state_t layer_state_set_user(layer_state_t state) {
66 writePin(D4, !layer_state_cmp(state, 1)); 67 writePin(D4, !layer_state_cmp(state, 1));
67 writePin(D3, !layer_state_cmp(state, 2)); 68 writePin(D3, !layer_state_cmp(state, 2));
68 return state; 69 return state;
69} \ No newline at end of file 70}
diff --git a/keyboards/swiftrax/retropad/keymaps/via/keymap.c b/keyboards/swiftrax/retropad/keymaps/via/keymap.c
index 8b9992e1d..6fd2ff5da 100644
--- a/keyboards/swiftrax/retropad/keymaps/via/keymap.c
+++ b/keyboards/swiftrax/retropad/keymaps/via/keymap.c
@@ -33,11 +33,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
33 KC_END, KC_PGDN), 33 KC_END, KC_PGDN),
34}; 34};
35 35
36void encoder_update_user(uint8_t index, bool clockwise) { 36bool encoder_update_user(uint8_t index, bool clockwise) {
37 if(IS_LAYER_ON(2)){ 37 if(IS_LAYER_ON(2)){
38 if (clockwise) 38 if (clockwise)
39 tap_code(KC_LEFT); 39 tap_code(KC_LEFT);
40 else 40 else
41 tap_code(KC_RGHT); 41 tap_code(KC_RGHT);
42 } 42 }
43 else{ 43 else{
@@ -46,6 +46,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
46 else 46 else
47 tap_code(KC_VOLD); 47 tap_code(KC_VOLD);
48 } 48 }
49 return true;
49} 50}
50 51
51void matrix_init_user(void) { 52void matrix_init_user(void) {
@@ -66,4 +67,4 @@ layer_state_t layer_state_set_user(layer_state_t state) {
66 writePin(D4, !layer_state_cmp(state, 1)); 67 writePin(D4, !layer_state_cmp(state, 1));
67 writePin(D3, !layer_state_cmp(state, 2)); 68 writePin(D3, !layer_state_cmp(state, 2));
68 return state; 69 return state;
69} \ No newline at end of file 70}