Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to data driven - superseeds part of https://github.com/qmk/qmk… #20220

Merged
merged 35 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c02e5b1
update to data driven - superseeds part of https://github.com/qmk/qmk…
Mar 22, 2023
36bb701
update
alinelena Mar 23, 2023
d4ec3b5
remove lock leds as layer indicator and replace them with real leds
alinelena Mar 23, 2023
3652ab1
Update keyboards/mlego/m65/rev1/info.json
Jul 4, 2023
83ffcee
update json
Jul 4, 2023
454051f
move led to kb
Jul 4, 2023
125e5d9
consistent leds, cleanup info.json
Jul 4, 2023
5ec8732
add missing config
Jul 4, 2023
8486f5e
fix borked merge
Jul 4, 2023
34ee0a3
fix borked merge
Jul 4, 2023
c16c9b4
address review requests
Jul 4, 2023
69a9bfa
Update keyboards/mlego/m65/keymaps/default/keymap.c
Jul 5, 2023
87f5bce
Update keyboards/mlego/m65/keymaps/uk/keymap.c
Jul 5, 2023
32fa23d
Update keyboards/mlego/m65/m65.c
Jul 6, 2023
dea2b2a
apply format-json
Aug 29, 2023
4c8277a
one more _kb fixed
Aug 29, 2023
68a9002
Update keyboards/mlego/m65/rev2/info.json
Aug 30, 2023
b29b31f
Update keyboards/mlego/m65/rev3/info.json
Aug 30, 2023
9813d23
Update keyboards/mlego/m65/rev4/info.json
Aug 30, 2023
1bef852
Update keyboards/mlego/m65/rev4/rules.mk
Aug 30, 2023
6b27f15
one more user
Aug 30, 2023
e8547d1
one more
Aug 30, 2023
43617cb
more cleanup
Aug 30, 2023
598265f
more cleanup
Aug 30, 2023
c6b3f85
better codes for encoder
Aug 30, 2023
364ed36
update
Sep 25, 2023
843f31b
remove lock leds as layer indicator and replace them with real leds
alinelena Mar 23, 2023
764e30a
rebase and fix
alinelena Sep 25, 2023
26816ab
rebase and fix still does not compile
alinelena Sep 25, 2023
3292a67
rebase and fix and compiles
alinelena Sep 25, 2023
73e741e
rebase and fix and compiles
alinelena Sep 25, 2023
f847881
update
Sep 25, 2023
d0250ec
update
Sep 25, 2023
cb1a675
update
Sep 25, 2023
5a82d77
update fix uk keymap
Sep 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
better codes for encoder
  • Loading branch information
alin elena committed Oct 6, 2023
commit c6b3f85c3c6061f770c4c82ebce75a108f609ed3
5 changes: 5 additions & 0 deletions keyboards/mlego/m65/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[_QW] = {ENCODER_CCW_CW(KC_VOLD, KC_VOLU)},
# ifdef RGBLIGHT_ENABLE
[_LWR] = {ENCODER_CCW_CW(RGB_HUD, RGB_HUI)},
[_RSE] = {ENCODER_CCW_CW(RGB_VAD, RGB_VAI)},
[_ADJ] = {ENCODER_CCW_CW(RGB_RMOD, RGB_MOD)},
# else
[_LWR] = {ENCODER_CCW_CW(KC_MNXT, KC_MPRV)},
[_RSE] = {ENCODER_CCW_CW(KC_MFFD, KC_MRWD)},
[_ADJ] = {ENCODER_CCW_CW(KC_PGDN, KC_PGUP)},
};
#endif
6 changes: 6 additions & 0 deletions keyboards/mlego/m65/keymaps/uk/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,14 @@ adj layer
#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[_QW] = {ENCODER_CCW_CW(KC_VOLD, KC_VOLU)},
# ifdef RGBLIGHT_ENABLE
[_LWR] = {ENCODER_CCW_CW(RGB_HUD, RGB_HUI)},
[_RSE] = {ENCODER_CCW_CW(RGB_VAD, RGB_VAI)},
[_ADJ] = {ENCODER_CCW_CW(RGB_RMOD, RGB_MOD)},
# else
[_LWR] = {ENCODER_CCW_CW(KC_MNXT, KC_MPRV)},
[_RSE] = {ENCODER_CCW_CW(KC_MFFD, KC_MRWD)},
[_ADJ] = {ENCODER_CCW_CW(KC_PGDN, KC_PGUP)},
};
};
#endif