mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-22 21:22:44 -04:00
[Keyboard] owl8 bugfix (#14020)
This commit is contained in:
parent
925d012aeb
commit
2eec8166cb
1 changed files with 4 additions and 4 deletions
|
@ -51,22 +51,22 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
keyevent_t encoder1_ccw = {
|
keyevent_t encoder1_ccw = {
|
||||||
.key = (keypos_t){.row = 3, .col = 1},
|
.key = (keypos_t){.row = 0, .col = 12},
|
||||||
.pressed = false
|
.pressed = false
|
||||||
};
|
};
|
||||||
|
|
||||||
keyevent_t encoder1_cw = {
|
keyevent_t encoder1_cw = {
|
||||||
.key = (keypos_t){.row = 3, .col = 0},
|
.key = (keypos_t){.row = 0, .col = 13},
|
||||||
.pressed = false
|
.pressed = false
|
||||||
};
|
};
|
||||||
|
|
||||||
keyevent_t encoder2_ccw = {
|
keyevent_t encoder2_ccw = {
|
||||||
.key = (keypos_t){.row = 3, .col = 3},
|
.key = (keypos_t){.row = 0, .col = 14},
|
||||||
.pressed = false
|
.pressed = false
|
||||||
};
|
};
|
||||||
|
|
||||||
keyevent_t encoder2_cw = {
|
keyevent_t encoder2_cw = {
|
||||||
.key = (keypos_t){.row = 3, .col = 2},
|
.key = (keypos_t){.row = 0, .col = 15},
|
||||||
.pressed = false
|
.pressed = false
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue