Skip to content

Commit

Permalink
Update encoder functions for Iris VIA keymap (#8295)
Browse files Browse the repository at this point in the history
  • Loading branch information
nooges authored Mar 2, 2020
1 parent 552f8d8 commit ce30cd2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions keyboards/keebio/iris/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

void encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) {
if (clockwise) {
tap_code(KC_VOLU);
} else {
tap_code(KC_VOLD);
}
}
else if (index == 1) {
if (clockwise) {
tap_code(KC_PGDN);
} else {
Expand Down
1 change: 0 additions & 1 deletion keyboards/keebio/iris/rev4/rev4.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include "iris.h"
#include "quantum.h"


#ifdef USE_I2C
#include <stddef.h>
#ifdef __AVR__
Expand Down

0 comments on commit ce30cd2

Please sign in to comment.