diff options
Diffstat (limited to 'keyboards/keebio/iris/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/keebio/iris/keymaps/via/keymap.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/keebio/iris/keymaps/via/keymap.c b/keyboards/keebio/iris/keymaps/via/keymap.c index f6183f1f7..0a71bad92 100644 --- a/keyboards/keebio/iris/keymaps/via/keymap.c +++ b/keyboards/keebio/iris/keymaps/via/keymap.c | |||
@@ -65,21 +65,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
65 | // └────────┴────────┴────────┘ └────────┴────────┴────────┘ | 65 | // └────────┴────────┴────────┘ └────────┴────────┴────────┘ |
66 | ) | 66 | ) |
67 | }; | 67 | }; |
68 | |||
69 | bool encoder_update_user(uint8_t index, bool clockwise) { | ||
70 | if (index == 0) { | ||
71 | if (clockwise) { | ||
72 | tap_code(KC_VOLU); | ||
73 | } else { | ||
74 | tap_code(KC_VOLD); | ||
75 | } | ||
76 | } | ||
77 | else if (index == 1) { | ||
78 | if (clockwise) { | ||
79 | tap_code(KC_PGDN); | ||
80 | } else { | ||
81 | tap_code(KC_PGUP); | ||
82 | } | ||
83 | } | ||
84 | return true; | ||
85 | } | ||