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

[Keymap] Add Via keymap for CXT Studio #21675

Merged
merged 2 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
[Keymap] Add Via keymap for CXT Studio
Also changes the vendor and product to values from the manufacturer.
  • Loading branch information
puffnfresh committed Aug 2, 2023
commit 71c8ae4da04aa1f98863f756ca4b2f54b48b59b0
4 changes: 2 additions & 2 deletions keyboards/cxt_studio/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"url": "",
"usb": {
"device_version": "1.0.0",
"pid": "0x0000",
"vid": "0xFEED"
"pid": "0xC401",
"vid": "0x5754"
},
"layouts": {
"LAYOUT": {
Expand Down
22 changes: 22 additions & 0 deletions keyboards/cxt_studio/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_ESC, KC_F11, KC_NO, KC_MSTP,
KC_NO, KC_NO, KC_MRWD, KC_MFFD,
KC_NO, KC_MPLY, KC_MPLY, KC_MNXT,

KC_MUTE, KC_NO, KC_NO, RGB_TOG
)
};

#if defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = {
ENCODER_CCW_CW(KC_VOLD, KC_VOLU),
ENCODER_CCW_CW(RGB_HUD, RGB_HUI),
ENCODER_CCW_CW(RGB_VAD, RGB_VAI),
ENCODER_CCW_CW(RGB_MODE_REVERSE, RGB_MODE_FORWARD)
},
};
#endif // defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE)
3 changes: 3 additions & 0 deletions keyboards/cxt_studio/keymaps/via/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VIA_ENABLE = yes
ENCODER_MAP_ENABLE = yes
LTO_ENABLE = yes
Loading