1
0
Fork 0

[Keyboard] owl8 bugfix (#14020)

This commit is contained in:
yfuku 2021-09-11 13:59:28 +09:00 committed by GitHub
parent d0b1d9f548
commit 46f15cd1a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 18 deletions

View file

@ -51,22 +51,22 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
keyevent_t encoder1_ccw = {
.key = (keypos_t){.row = 3, .col = 1},
.key = (keypos_t){.row = 0, .col = 12},
.pressed = false
};
keyevent_t encoder1_cw = {
.key = (keypos_t){.row = 3, .col = 0},
.key = (keypos_t){.row = 0, .col = 13},
.pressed = false
};
keyevent_t encoder2_ccw = {
.key = (keypos_t){.row = 3, .col = 3},
.key = (keypos_t){.row = 0, .col = 14},
.pressed = false
};
keyevent_t encoder2_cw = {
.key = (keypos_t){.row = 3, .col = 2},
.key = (keypos_t){.row = 0, .col = 15},
.pressed = false
};