diff options
22 files changed, 245 insertions, 21 deletions
diff --git a/keyboards/40percentclub/25/config.h b/keyboards/40percentclub/25/config.h index af25449ab..8ff526467 100644 --- a/keyboards/40percentclub/25/config.h +++ b/keyboards/40percentclub/25/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0xFEED | 22 | #define VENDOR_ID 0x4025 |
23 | #define PRODUCT_ID 0x0A0C | 23 | #define PRODUCT_ID 0x0A0C |
24 | #define DEVICE_VER 0x0F25 | 24 | #define DEVICE_VER 0x0F25 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/4pack/config.h b/keyboards/40percentclub/4pack/config.h index db5171592..023df5fc4 100644 --- a/keyboards/40percentclub/4pack/config.h +++ b/keyboards/40percentclub/4pack/config.h | |||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | #include "config_common.h" | 20 | #include "config_common.h" |
21 | 21 | ||
22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
23 | #define VENDOR_ID 0xFEED | 23 | #define VENDOR_ID 0x4025 |
24 | #define PRODUCT_ID 0x0000 | 24 | #define PRODUCT_ID 0x0000 |
25 | #define DEVICE_VER 0x0001 | 25 | #define DEVICE_VER 0x0001 |
26 | #define MANUFACTURER 40percentclub | 26 | #define MANUFACTURER 40percentclub |
diff --git a/keyboards/40percentclub/4x4/config.h b/keyboards/40percentclub/4x4/config.h index 77b6e7c58..439aa1b14 100644 --- a/keyboards/40percentclub/4x4/config.h +++ b/keyboards/40percentclub/4x4/config.h | |||
@@ -5,7 +5,7 @@ | |||
5 | #include "config_common.h" | 5 | #include "config_common.h" |
6 | 6 | ||
7 | /* USB Device descriptor parameter */ | 7 | /* USB Device descriptor parameter */ |
8 | #define VENDOR_ID 0xFEED | 8 | #define VENDOR_ID 0x4025 //"40 %", since 0x3430 is already registered. |
9 | #define PRODUCT_ID 0x0A0C | 9 | #define PRODUCT_ID 0x0A0C |
10 | #define DEVICE_VER 0x4444 | 10 | #define DEVICE_VER 0x4444 |
11 | #define MANUFACTURER di0ib | 11 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/4x4/keymaps/via/keymap.c b/keyboards/40percentclub/4x4/keymaps/via/keymap.c new file mode 100644 index 000000000..3c39e9854 --- /dev/null +++ b/keyboards/40percentclub/4x4/keymaps/via/keymap.c | |||
@@ -0,0 +1,105 @@ | |||
1 | /* Copyright 2021 Milan Düwel | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | enum custom_layers { | ||
20 | PAD, | ||
21 | _QW, | ||
22 | NUM, | ||
23 | DIR | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | |||
28 | /* Single 4x4 board only | ||
29 | * .-----------------------------------. | ||
30 | * | 7 | 8 | 9 | / | | ||
31 | * |--------+--------+--------+--------| | ||
32 | * | 4 | 5 | 6 | * | | ||
33 | * |--------+--------+--------+--------| | ||
34 | * | 1 | 2 | 3 | - | | ||
35 | * |--------+--------+--------+--------| | ||
36 | * | 0 | QWERTY | . | + | | ||
37 | * '-----------------------------------' | ||
38 | */ | ||
39 | |||
40 | [PAD] = LAYOUT_ortho_4x4( | ||
41 | KC_KP_7, KC_KP_8, KC_KP_9, KC_PSLS, | ||
42 | KC_KP_4, KC_KP_5, KC_KP_6, KC_PAST, | ||
43 | KC_KP_1, KC_KP_2, KC_KP_3, KC_PMNS, | ||
44 | KC_KP_0, DF(_QW), KC_KP_DOT, KC_PPLS | ||
45 | ), | ||
46 | |||
47 | /* QWERTY | ||
48 | * .-----------------------------------------------------------------------------------------------------------------------------------------------. | ||
49 | * | ESC | Q | W | E | R | T | Y | U | I | O | P | BACKSP | 7 | 8 | 9 | / | | ||
50 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
51 | * | TAB | A | S | D | F | G | H | J | K | L | ; | ' | 4 | 5 | 6 | * | | ||
52 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
53 | * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENT/SFT| 1 | 2 | 3 | - | | ||
54 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
55 | * | LCTRL | LGUI | ALT | ALT | NUM | SHIFT | SPACE | DIR | RGUI | RALT | DEL | CTRL | 0 | 0 | . | + | | ||
56 | * '-----------------------------------------------------------------------------------------------------------------------------------------------' | ||
57 | */ | ||
58 | |||
59 | [_QW] = LAYOUT_ortho_4x16( | ||
60 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, KC_KP_7, KC_KP_8, KC_KP_9, KC_PSLS, | ||
61 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_KP_4, KC_KP_5, KC_KP_6, KC_PAST, | ||
62 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, SFT_T(KC_ENT), KC_KP_1, KC_KP_2, KC_KP_3, KC_PMNS, | ||
63 | KC_LCTL, KC_LGUI, KC_LALT, KC_LALT, MO(NUM), KC_LSFT, KC_SPC, MO(DIR), KC_RGUI, KC_RALT, KC_DEL, KC_RCTL, KC_KP_0, KC_KP_0, KC_KP_DOT, KC_PPLS | ||
64 | ), | ||
65 | |||
66 | /* NUMBERS | ||
67 | * .-----------------------------------------------------------------------------------------------------------------------------------------------. | ||
68 | * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | NUMLOCK| / | * | - | | | ||
69 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
70 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | | | | + | | | ||
71 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
72 | * | | F11 | F12 | | | | ENTER | SHIFT | RGUI | ./ALT | BKSC | | | | ENTER | | | ||
73 | * | | | | | | | | | | |CTRLhold| | | | | | | ||
74 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
75 | * | | | | | | | ENTER | SHIFT | | | | | | | | | | ||
76 | * '-----------------------------------------------------------------------------------------------------------------------------------------------' | ||
77 | */ | ||
78 | |||
79 | [NUM] = LAYOUT_ortho_4x16( | ||
80 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, _______, | ||
81 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, _______, _______, KC_PPLS, _______, | ||
82 | _______, KC_F11, KC_F12, _______, _______, _______, KC_ENT, KC_RSFT, KC_RGUI, ALT_T(KC_DOT), CTL_T(KC_BSPC), _______, _______, _______, KC_PENT, _______, | ||
83 | _______, _______, _______, _______, _______, _______, KC_ENT, KC_RSFT, _______, _______, _______, _______, _______, _______, _______, _______ | ||
84 | ), | ||
85 | |||
86 | /* DIRECTIONS | ||
87 | * .-----------------------------------------------------------------------------------------------------------------------------------------------. | ||
88 | * | RESET | TAB | up | | INS | CTRL | SHIFT | PgUp | Home | - | = | DEL | | | | | | ||
89 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
90 | * | CAPSLK | left | down | right | PrScr | SHIFT | CTRL | PgDn | End | [ | ] | \ | | | | | | ||
91 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
92 | * | | P-Brk | | | | | | | RGUI | ALT | | | | | | | | ||
93 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
94 | * | KEYPAD | | | | | | | | | | | | | | | | | ||
95 | * '-----------------------------------------------------------------------------------------------------------------------------------------------' | ||
96 | */ | ||
97 | |||
98 | [DIR] = LAYOUT_ortho_4x16( | ||
99 | RESET, KC_TAB, KC_UP, _______, KC_INS, KC_LCTL, KC_LSFT, KC_PGUP, KC_HOME, KC_MINS, KC_EQL, KC_DEL, _______, _______, _______, _______, | ||
100 | KC_CAPS, KC_LEFT, KC_DOWN, KC_RGHT, KC_PSCR, KC_LSFT, KC_LCTL, KC_PGDN, KC_END, KC_LBRC, KC_RBRC, KC_BSLS, _______, _______, _______, _______, | ||
101 | _______, KC_PAUS, _______, _______, _______, _______, _______, _______, KC_RGUI, KC_RALT, _______, _______, _______, _______, _______, _______, | ||
102 | DF(PAD), _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
103 | ), | ||
104 | |||
105 | }; | ||
diff --git a/keyboards/40percentclub/4x4/keymaps/via/rules.mk b/keyboards/40percentclub/4x4/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/40percentclub/4x4/keymaps/via/rules.mk | |||
@@ -0,0 +1 @@ | |||
VIA_ENABLE = yes | |||
diff --git a/keyboards/40percentclub/5x5/config.h b/keyboards/40percentclub/5x5/config.h index 694a58985..c9a83de73 100644 --- a/keyboards/40percentclub/5x5/config.h +++ b/keyboards/40percentclub/5x5/config.h | |||
@@ -5,7 +5,7 @@ | |||
5 | #include "config_common.h" | 5 | #include "config_common.h" |
6 | 6 | ||
7 | /* USB Device descriptor parameter */ | 7 | /* USB Device descriptor parameter */ |
8 | #define VENDOR_ID 0xFEED | 8 | #define VENDOR_ID 0x4025 |
9 | #define PRODUCT_ID 0x0A0C | 9 | #define PRODUCT_ID 0x0A0C |
10 | #define DEVICE_VER 0x05B5 | 10 | #define DEVICE_VER 0x05B5 |
11 | #define MANUFACTURER di0ib | 11 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/5x5/keymaps/via/keymap.c b/keyboards/40percentclub/5x5/keymaps/via/keymap.c new file mode 100644 index 000000000..735fa6b14 --- /dev/null +++ b/keyboards/40percentclub/5x5/keymaps/via/keymap.c | |||
@@ -0,0 +1,117 @@ | |||
1 | /* Copyright 2021 Milan Düwel | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | enum custom_layers { | ||
20 | PAD, | ||
21 | _QW, | ||
22 | NUM, | ||
23 | DIR | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | |||
28 | /* Single 5x5 board only | ||
29 | * .--------------------------------------------. | ||
30 | * | QWERTY | / | * | - | | | ||
31 | * |--------+--------+--------+--------+--------| | ||
32 | * | 7 | 8 | 9 | + | | | ||
33 | * |--------+--------+--------+--------+--------| | ||
34 | * | 4 | 5 | 6 | + | | | ||
35 | * |--------+--------+--------+--------+--------| | ||
36 | * | 1 | 2 | 3 | ENTER | | | ||
37 | * |--------+--------+--------+--------+--------| | ||
38 | * | 0 | 0 | . | ENTER | | | ||
39 | * '--------------------------------------------' | ||
40 | */ | ||
41 | |||
42 | [PAD] = LAYOUT_ortho_5x5( | ||
43 | DF(_QW), KC_PSLS, KC_PAST, KC_PMNS, _______, | ||
44 | KC_KP_7, KC_KP_8, KC_KP_9, KC_PPLS, _______, | ||
45 | KC_KP_4, KC_KP_5, KC_KP_6, KC_PPLS, _______, | ||
46 | KC_KP_1, KC_KP_2, KC_KP_3, KC_PENT, _______, | ||
47 | KC_KP_0, KC_KP_0, KC_KP_DOT, KC_PENT, _______ | ||
48 | ), | ||
49 | |||
50 | /* QWERTY | ||
51 | * .--------------------------------------------------------------------------------------------------------------------------------------. | ||
52 | * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | | | | | | ||
53 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
54 | * | ESC | Q | W | E | R | T | Y | U | I | O | P | BACKSP | 7 | 8 | 9 | | ||
55 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
56 | * | TAB | A | S | D | F | G | H | J | K | L | ; | ' | 4 | 5 | 6 | | ||
57 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
58 | * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENT/SFT| 1 | 2 | 3 | | ||
59 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
60 | * | LCTRL | LGUI | ALT | ALT | NUM | SHIFT | SPACE | DIR | RGUI | RALT | DEL | CTRL | 0 | 0 | . | | ||
61 | * '--------------------------------------------------------------------------------------------------------------------------------------' | ||
62 | */ | ||
63 | |||
64 | [_QW] = LAYOUT_ortho_5x15( | ||
65 | _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, _______, _______, _______, | ||
66 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, KC_KP_7, KC_KP_8, KC_KP_9, | ||
67 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_KP_4, KC_KP_5, KC_KP_6, | ||
68 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, SFT_T(KC_ENT), KC_KP_1, KC_KP_2, KC_KP_3, | ||
69 | KC_LCTL, KC_LGUI, KC_LALT, KC_LALT, MO(NUM), KC_LSFT, KC_SPC, MO(DIR), KC_RGUI, KC_RALT, KC_DEL, KC_RCTL, KC_KP_0, KC_KP_0, KC_KP_DOT | ||
70 | ), | ||
71 | |||
72 | /* NUMBERS | ||
73 | * .--------------------------------------------------------------------------------------------------------------------------------------. | ||
74 | * | | | | | | | | | | | | | | | | | ||
75 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
76 | * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | NUMLOCK| / | * | - | | ||
77 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
78 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | | | | + | | ||
79 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
80 | * | | F11 | F12 | | | | ENTER | SHIFT | RGUI | ./ALT | BKSC | | | | ENTER | | ||
81 | * | | | | | | | | | | |CTRLhold| | | | | | ||
82 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
83 | * | | | | | | | ENTER | SHIFT | | | | | | | | | ||
84 | * '--------------------------------------------------------------------------------------------------------------------------------------' | ||
85 | */ | ||
86 | |||
87 | [NUM] = LAYOUT_ortho_5x15( | ||
88 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
89 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
90 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, _______, _______, KC_PPLS, | ||
91 | _______, KC_F11, KC_F12, _______, _______, _______, KC_ENT, KC_RSFT, KC_RGUI, ALT_T(KC_DOT), CTL_T(KC_BSPC), _______, _______, _______, KC_PENT, | ||
92 | _______, _______, _______, _______, _______, _______, KC_ENT, KC_RSFT, _______, _______, _______, _______, _______, _______, _______ | ||
93 | ), | ||
94 | |||
95 | /* DIRECTIONS | ||
96 | * .--------------------------------------------------------------------------------------------------------------------------------------. | ||
97 | * | | | | | | | | | | | | | | | | | ||
98 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
99 | * | RESET | TAB | up | | INS | CTRL | SHIFT | PgUp | Home | - | = | DEL | | | | | ||
100 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
101 | * | CAPSLK | left | down | right | PrScr | SHIFT | CTRL | PgDn | End | [ | ] | \ | | | | | ||
102 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
103 | * | | P-Brk | | | | | | | RGUI | ALT | | | | | | | ||
104 | * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||
105 | * | KEYPAD | | | | | | | | | | | | | | | | ||
106 | * '--------------------------------------------------------------------------------------------------------------------------------------' | ||
107 | */ | ||
108 | |||
109 | [DIR] = LAYOUT_ortho_5x15( | ||
110 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
111 | RESET, KC_TAB, KC_UP, _______, KC_INS, KC_LCTL, KC_LSFT, KC_PGUP, KC_HOME, KC_MINS, KC_EQL, KC_DEL, _______, _______, _______, | ||
112 | KC_CAPS, KC_LEFT, KC_DOWN, KC_RGHT, KC_PSCR, KC_LSFT, KC_LCTL, KC_PGDN, KC_END, KC_LBRC, KC_RBRC, KC_BSLS, _______, _______, _______, | ||
113 | _______, KC_PAUS, _______, _______, _______, _______, _______, _______, KC_RGUI, KC_RALT, _______, _______, _______, _______, _______, | ||
114 | DF(PAD), _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
115 | ), | ||
116 | |||
117 | }; | ||
diff --git a/keyboards/40percentclub/5x5/keymaps/via/rules.mk b/keyboards/40percentclub/5x5/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/40percentclub/5x5/keymaps/via/rules.mk | |||
@@ -0,0 +1 @@ | |||
VIA_ENABLE = yes | |||
diff --git a/keyboards/40percentclub/6lit/config.h b/keyboards/40percentclub/6lit/config.h index ddf91a3ce..f5c0ea304 100644 --- a/keyboards/40percentclub/6lit/config.h +++ b/keyboards/40percentclub/6lit/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0xFEED | 22 | #define VENDOR_ID 0x4025 |
23 | #define PRODUCT_ID 0x0A0C | 23 | #define PRODUCT_ID 0x0A0C |
24 | #define DEVICE_VER 0x0F61 | 24 | #define DEVICE_VER 0x0F61 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/foobar/config.h b/keyboards/40percentclub/foobar/config.h index 999efef7f..a65b6e51b 100644 --- a/keyboards/40percentclub/foobar/config.h +++ b/keyboards/40percentclub/foobar/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0xFEED | 22 | #define VENDOR_ID 0x4025 |
23 | #define PRODUCT_ID 0x0A0C | 23 | #define PRODUCT_ID 0x0A0C |
24 | #define DEVICE_VER 0x0F00 | 24 | #define DEVICE_VER 0x0F00 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/gherkin/config.h b/keyboards/40percentclub/gherkin/config.h index 1307ca2e1..6373ea2e6 100644 --- a/keyboards/40percentclub/gherkin/config.h +++ b/keyboards/40percentclub/gherkin/config.h | |||
@@ -3,7 +3,7 @@ | |||
3 | #include "config_common.h" | 3 | #include "config_common.h" |
4 | 4 | ||
5 | /* USB Device descriptor parameter */ | 5 | /* USB Device descriptor parameter */ |
6 | #define VENDOR_ID 0xFEED | 6 | #define VENDOR_ID 0x4025 //"40 %", since 0x3430 is already registered. |
7 | #define PRODUCT_ID 0x6060 | 7 | #define PRODUCT_ID 0x6060 |
8 | #define DEVICE_VER 0x0001 | 8 | #define DEVICE_VER 0x0001 |
9 | #define MANUFACTURER 40 Percent Club | 9 | #define MANUFACTURER 40 Percent Club |
diff --git a/keyboards/40percentclub/half_n_half/config.h b/keyboards/40percentclub/half_n_half/config.h index 3409af5f6..f79f83839 100644 --- a/keyboards/40percentclub/half_n_half/config.h +++ b/keyboards/40percentclub/half_n_half/config.h | |||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | #include "config_common.h" | 20 | #include "config_common.h" |
21 | 21 | ||
22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
23 | #define VENDOR_ID 0xFEED | 23 | #define VENDOR_ID 0x4025 |
24 | #define PRODUCT_ID 0x0A0C | 24 | #define PRODUCT_ID 0x0A0C |
25 | #define DEVICE_VER 0x4A1F | 25 | #define DEVICE_VER 0x4A1F |
26 | #define MANUFACTURER di0ib | 26 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/i75/config.h b/keyboards/40percentclub/i75/config.h index e89f4f580..bacf9eb30 100644 --- a/keyboards/40percentclub/i75/config.h +++ b/keyboards/40percentclub/i75/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0xFEED | 22 | #define VENDOR_ID 0x4025 |
23 | #define PRODUCT_ID 0x0A0C | 23 | #define PRODUCT_ID 0x0A0C |
24 | #define DEVICE_VER 0x0175 | 24 | #define DEVICE_VER 0x0175 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/luddite/config.h b/keyboards/40percentclub/luddite/config.h index 90d84c56e..3f15523c8 100644 --- a/keyboards/40percentclub/luddite/config.h +++ b/keyboards/40percentclub/luddite/config.h | |||
@@ -3,7 +3,7 @@ | |||
3 | #include "config_common.h" | 3 | #include "config_common.h" |
4 | 4 | ||
5 | /* USB Device descriptor parameter */ | 5 | /* USB Device descriptor parameter */ |
6 | #define VENDOR_ID 0x3430 // "40" | 6 | #define VENDOR_ID 0x4025 // "40%", changed since 0x3430 is already officially registered |
7 | #define PRODUCT_ID 0x4C55 // "LU" | 7 | #define PRODUCT_ID 0x4C55 // "LU" |
8 | #define DEVICE_VER 0x1001 | 8 | #define DEVICE_VER 0x1001 |
9 | #define MANUFACTURER di0ib | 9 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/mf68/config.h b/keyboards/40percentclub/mf68/config.h index 230725615..7ebe5ae1b 100644 --- a/keyboards/40percentclub/mf68/config.h +++ b/keyboards/40percentclub/mf68/config.h | |||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | #include "config_common.h" | 20 | #include "config_common.h" |
21 | 21 | ||
22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
23 | #define VENDOR_ID 0x3430 // "40" | 23 | #define VENDOR_ID 0x4025 // "40%", changed since 0x3430 is already officially registered |
24 | #define PRODUCT_ID 0x4D68 // "M68" | 24 | #define PRODUCT_ID 0x4D68 // "M68" |
25 | #define DEVICE_VER 0x0101 | 25 | #define DEVICE_VER 0x0101 |
26 | #define MANUFACTURER di0ib | 26 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/nano/config.h b/keyboards/40percentclub/nano/config.h index aa4a64d07..c6d66a1bb 100644 --- a/keyboards/40percentclub/nano/config.h +++ b/keyboards/40percentclub/nano/config.h | |||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | #include "config_common.h" | 20 | #include "config_common.h" |
21 | 21 | ||
22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
23 | #define VENDOR_ID 0xCEEB | 23 | #define VENDOR_ID 0x4025 //"40 %", to make it consistent with other 40percent.club boards. |
24 | #define PRODUCT_ID 0x0007 | 24 | #define PRODUCT_ID 0x0007 |
25 | #define DEVICE_VER 0x0001 | 25 | #define DEVICE_VER 0x0001 |
26 | #define MANUFACTURER di0ib | 26 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/nein/config.h b/keyboards/40percentclub/nein/config.h index 1dedb608f..87c62673f 100644 --- a/keyboards/40percentclub/nein/config.h +++ b/keyboards/40percentclub/nein/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0x3430 // "40" | 22 | #define VENDOR_ID 0x4025 // "40%", changed since 0x3430 is already officially registered |
23 | #define PRODUCT_ID 0x9999 | 23 | #define PRODUCT_ID 0x9999 |
24 | #define DEVICE_VER 0x9999 | 24 | #define DEVICE_VER 0x9999 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/nori/config.h b/keyboards/40percentclub/nori/config.h index 40225748a..882da633e 100644 --- a/keyboards/40percentclub/nori/config.h +++ b/keyboards/40percentclub/nori/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0xFEED | 22 | #define VENDOR_ID 0x4025 |
23 | #define PRODUCT_ID 0x0A0C | 23 | #define PRODUCT_ID 0x0A0C |
24 | #define DEVICE_VER 0x0444 | 24 | #define DEVICE_VER 0x0444 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/polyandry/config.h b/keyboards/40percentclub/polyandry/config.h index 4d64e2d20..6f04d1229 100644 --- a/keyboards/40percentclub/polyandry/config.h +++ b/keyboards/40percentclub/polyandry/config.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "config_common.h" | 19 | #include "config_common.h" |
20 | 20 | ||
21 | /* USB Device descriptor parameter */ | 21 | /* USB Device descriptor parameter */ |
22 | #define VENDOR_ID 0xFEED | 22 | #define VENDOR_ID 0x4025 |
23 | #define PRODUCT_ID 0x6060 | 23 | #define PRODUCT_ID 0x6060 |
24 | #define DEVICE_VER 0x0001 | 24 | #define DEVICE_VER 0x0001 |
25 | #define MANUFACTURER di0ib | 25 | #define MANUFACTURER di0ib |
@@ -28,7 +28,7 @@ | |||
28 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | 28 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ |
29 | #define DEBOUNCE 5 | 29 | #define DEBOUNCE 5 |
30 | 30 | ||
31 | //more detailed config options start below: | 31 | //more detailed config options start below: |
32 | 32 | ||
33 | 33 | ||
34 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | 34 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ |
diff --git a/keyboards/40percentclub/sixpack/config.h b/keyboards/40percentclub/sixpack/config.h index 2ec676018..edb123c4b 100644 --- a/keyboards/40percentclub/sixpack/config.h +++ b/keyboards/40percentclub/sixpack/config.h | |||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | #include "config_common.h" | 20 | #include "config_common.h" |
21 | 21 | ||
22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
23 | #define VENDOR_ID 0x3430 // "40" | 23 | #define VENDOR_ID 0x4025 //"40 %", since 0x3430 is already registered. |
24 | #define PRODUCT_ID 0x5350 // "SP" | 24 | #define PRODUCT_ID 0x5350 // "SP" |
25 | #define DEVICE_VER 0x1001 | 25 | #define DEVICE_VER 0x1001 |
26 | #define MANUFACTURER di0ib | 26 | #define MANUFACTURER di0ib |
diff --git a/keyboards/40percentclub/tomato/config.h b/keyboards/40percentclub/tomato/config.h index a083223a1..8f06341aa 100644 --- a/keyboards/40percentclub/tomato/config.h +++ b/keyboards/40percentclub/tomato/config.h | |||
@@ -3,8 +3,8 @@ | |||
3 | #include "config_common.h" | 3 | #include "config_common.h" |
4 | 4 | ||
5 | /* USB Device descriptor parameter */ | 5 | /* USB Device descriptor parameter */ |
6 | #define VENDOR_ID 0xFEED | 6 | #define VENDOR_ID 0x4025 |
7 | #define PRODUCT_ID 0x6060 | 7 | #define PRODUCT_ID 0x546F //"To", was duplicate with polyandry |
8 | #define DEVICE_VER 0x0001 | 8 | #define DEVICE_VER 0x0001 |
9 | #define MANUFACTURER 40 Percent Club | 9 | #define MANUFACTURER 40 Percent Club |
10 | #define PRODUCT Tomato | 10 | #define PRODUCT Tomato |
diff --git a/keyboards/40percentclub/ut47/config.h b/keyboards/40percentclub/ut47/config.h index 9622f58bb..7ead58e09 100644 --- a/keyboards/40percentclub/ut47/config.h +++ b/keyboards/40percentclub/ut47/config.h | |||
@@ -20,8 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | #include "config_common.h" | 20 | #include "config_common.h" |
21 | 21 | ||
22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
23 | #define VENDOR_ID 0xFEED | 23 | #define VENDOR_ID 0x4025 |
24 | #define PRODUCT_ID 0x0000 | 24 | #define PRODUCT_ID 0x7574 //"ut" |
25 | #define DEVICE_VER 0x0001 | 25 | #define DEVICE_VER 0x0001 |
26 | #define MANUFACTURER 40percent.club | 26 | #define MANUFACTURER 40percent.club |
27 | #define PRODUCT ut47 | 27 | #define PRODUCT ut47 |