diff options
| author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2020-02-16 11:42:03 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-16 11:42:03 -0800 |
| commit | de462761c996eb83a447fb9f668cd254d4284849 (patch) | |
| tree | 87f8f8e6fac71b3bd2aa3dd786945207c658a80a /keyboards/dztech | |
| parent | 17ff5512757e05cd3b4e27066c24ac697fa8da9c (diff) | |
| download | qmk_firmware-de462761c996eb83a447fb9f668cd254d4284849.tar.gz qmk_firmware-de462761c996eb83a447fb9f668cd254d4284849.zip | |
[Keyboard] VIA Support: DZ60RGB ANSI V1/V2 (#8159)
* add dz60 via support
* use the correct DZ vendor id dervied from dz60
* differentiate product ID of v2 board
Diffstat (limited to 'keyboards/dztech')
| -rw-r--r-- | keyboards/dztech/dz60rgb_ansi/keymaps/via/keymap.c | 33 | ||||
| -rw-r--r-- | keyboards/dztech/dz60rgb_ansi/keymaps/via/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/dztech/dz60rgb_ansi/v1/config.h | 2 | ||||
| -rw-r--r-- | keyboards/dztech/dz60rgb_ansi/v2/config.h | 4 |
4 files changed, 38 insertions, 3 deletions
diff --git a/keyboards/dztech/dz60rgb_ansi/keymaps/via/keymap.c b/keyboards/dztech/dz60rgb_ansi/keymaps/via/keymap.c new file mode 100644 index 000000000..9ad5872d4 --- /dev/null +++ b/keyboards/dztech/dz60rgb_ansi/keymaps/via/keymap.c | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | [0] = LAYOUT_60_ansi( | ||
| 5 | KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
| 6 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 7 | CTL_T(KC_CAPS), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 8 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 9 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), MO(2), KC_RCTL | ||
| 10 | ), | ||
| 11 | [1] = LAYOUT_60_ansi( | ||
| 12 | KC_GESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
| 13 | _______, _______, KC_UP, _______, _______, _______, KC_CALC, _______, KC_INS, _______, KC_PSCR, KC_SLCK, KC_PAUS, RESET, | ||
| 14 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGUP, _______, | ||
| 15 | KC_MPRV, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, NK_TOGG, _______, _______, KC_END, KC_PGDN, KC_MNXT, | ||
| 16 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 17 | ), | ||
| 18 | [2] = LAYOUT_60_ansi( | ||
| 19 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, | ||
| 20 | _______, RGB_TOG, _______, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, RGB_MOD, _______, _______, _______, RESET, | ||
| 21 | _______, _______, _______, _______, _______, _______, _______, _______, RGB_SPI, RGB_SPD, _______, _______, _______, | ||
| 22 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 23 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 24 | ), | ||
| 25 | |||
| 26 | [3] = LAYOUT_60_ansi( | ||
| 27 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 32 | ) | ||
| 33 | }; | ||
diff --git a/keyboards/dztech/dz60rgb_ansi/keymaps/via/rules.mk b/keyboards/dztech/dz60rgb_ansi/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/dztech/dz60rgb_ansi/keymaps/via/rules.mk | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | VIA_ENABLE = yes | ||
| 2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/dztech/dz60rgb_ansi/v1/config.h b/keyboards/dztech/dz60rgb_ansi/v1/config.h index 050f66c6f..fb76ee7df 100644 --- a/keyboards/dztech/dz60rgb_ansi/v1/config.h +++ b/keyboards/dztech/dz60rgb_ansi/v1/config.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #pragma once | 1 | #pragma once |
| 2 | 2 | ||
| 3 | /* USB Device descriptor parameter */ | 3 | /* USB Device descriptor parameter */ |
| 4 | #define VENDOR_ID 0xFEED | 4 | #define VENDOR_ID 0x445A |
| 5 | #define PRODUCT_ID 0x1220 | 5 | #define PRODUCT_ID 0x1220 |
| 6 | #define DEVICE_VER 0x0001 | 6 | #define DEVICE_VER 0x0001 |
| 7 | #define MANUFACTURER DZTECH | 7 | #define MANUFACTURER DZTECH |
diff --git a/keyboards/dztech/dz60rgb_ansi/v2/config.h b/keyboards/dztech/dz60rgb_ansi/v2/config.h index b357ceefe..3bd287b5f 100644 --- a/keyboards/dztech/dz60rgb_ansi/v2/config.h +++ b/keyboards/dztech/dz60rgb_ansi/v2/config.h | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | #pragma once | 1 | #pragma once |
| 2 | 2 | ||
| 3 | /* USB Device descriptor parameter */ | 3 | /* USB Device descriptor parameter */ |
| 4 | #define VENDOR_ID 0xFEED | 4 | #define VENDOR_ID 0x445A |
| 5 | #define PRODUCT_ID 0x1220 | 5 | #define PRODUCT_ID 0x1221 |
| 6 | #define DEVICE_VER 0x0002 | 6 | #define DEVICE_VER 0x0002 |
| 7 | #define MANUFACTURER DZTECH | 7 | #define MANUFACTURER DZTECH |
| 8 | #define PRODUCT DZ60RGB_ANSI | 8 | #define PRODUCT DZ60RGB_ANSI |
