diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2021-02-13 18:16:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-13 18:16:23 -0800 |
commit | d035bb51f42909f2b866c2986f2f765ec2586328 (patch) | |
tree | 4650d9c191a3a05d533e7b49407151edb53481d1 | |
parent | 537b7614b9be39025379291880b549e4fa4d826d (diff) | |
download | qmk_firmware-d035bb51f42909f2b866c2986f2f765ec2586328.tar.gz qmk_firmware-d035bb51f42909f2b866c2986f2f765ec2586328.zip |
[Keyboard] NEO Keys Palette G67 Hotswap & Soldered (#11850)
18 files changed, 1209 insertions, 0 deletions
diff --git a/keyboards/neokeys/g67/hotswap/config.h b/keyboards/neokeys/g67/hotswap/config.h new file mode 100644 index 000000000..d5303fa05 --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/config.h | |||
@@ -0,0 +1,67 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | #pragma once | ||
18 | |||
19 | #include "config_common.h" | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define VENDOR_ID 0x4E4B // "NK" | ||
23 | #define PRODUCT_ID 0x5048 | ||
24 | #define DEVICE_VER 0x0100 | ||
25 | #define MANUFACTURER NEO Keys | ||
26 | #define PRODUCT Palette G67 Hotswap | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 5 | ||
30 | #define MATRIX_COLS 15 | ||
31 | |||
32 | /* | ||
33 | * Keyboard Matrix Assignments | ||
34 | * | ||
35 | * Change this to how you wired your keyboard | ||
36 | * COLS: AVR pins used for columns, left to right | ||
37 | * ROWS: AVR pins used for rows, top to bottom | ||
38 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
39 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
40 | * | ||
41 | */ | ||
42 | #define MATRIX_ROW_PINS { B0, B1, B2, B3, F7 } | ||
43 | #define MATRIX_COL_PINS { C7, F6, F5, F4, F1, E6, D0, D1, D2, D3, D4, D5, D6, D7, B4 } | ||
44 | |||
45 | #define DIODE_DIRECTION COL2ROW | ||
46 | |||
47 | #if defined(RGBLIGHT_ENABLE) | ||
48 | #define RGB_DI_PIN F0 | ||
49 | #define RGBLED_NUM 77 | ||
50 | #define RGBLIGHT_HUE_STEP 8 | ||
51 | #define RGBLIGHT_SAT_STEP 8 | ||
52 | #define RGBLIGHT_VAL_STEP 8 | ||
53 | #define RGBLIGHT_LIMIT_VAL 150 /* The maximum brightness level */ | ||
54 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
55 | /*== all animations enable ==*/ | ||
56 | #define RGBLIGHT_ANIMATIONS | ||
57 | // /*== or choose animations ==*/ | ||
58 | // #define RGBLIGHT_EFFECT_BREATHING | ||
59 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
60 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
61 | // #define RGBLIGHT_EFFECT_SNAKE | ||
62 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
63 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
64 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
65 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
66 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
67 | #endif | ||
diff --git a/keyboards/neokeys/g67/hotswap/hotswap.c b/keyboards/neokeys/g67/hotswap/hotswap.c new file mode 100644 index 000000000..dfa980344 --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/hotswap.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 "hotswap.h" | ||
diff --git a/keyboards/neokeys/g67/hotswap/hotswap.h b/keyboards/neokeys/g67/hotswap/hotswap.h new file mode 100644 index 000000000..474300d06 --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/hotswap.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | #define LAYOUT_65_ansi_blocker( \ | ||
22 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
23 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
24 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
25 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
26 | K40, K41, K43, K46, K4A, K4B, K4C, K4D, K4E \ | ||
27 | ) { \ | ||
28 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
29 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
30 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D, K2E }, \ | ||
31 | { K30, KC_NO, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
32 | { K40, K41, KC_NO, K43, KC_NO, KC_NO, K46, KC_NO, KC_NO, KC_NO, K4A, K4B, K4C, K4D, K4E }, \ | ||
33 | } | ||
diff --git a/keyboards/neokeys/g67/hotswap/info.json b/keyboards/neokeys/g67/hotswap/info.json new file mode 100644 index 000000000..98d6654f0 --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/info.json | |||
@@ -0,0 +1,84 @@ | |||
1 | { | ||
2 | "keyboard_name": "NEO Keys Palette G67 Hotswap", | ||
3 | "url": "", | ||
4 | "maintainer": "qmk", | ||
5 | "width": 16, | ||
6 | "height": 5, | ||
7 | "layouts": { | ||
8 | "LAYOUT_65_ansi_blocker": { | ||
9 | "layout": [ | ||
10 | {"x":0, "y":0}, | ||
11 | {"x":1, "y":0}, | ||
12 | {"x":2, "y":0}, | ||
13 | {"x":3, "y":0}, | ||
14 | {"x":4, "y":0}, | ||
15 | {"x":5, "y":0}, | ||
16 | {"x":6, "y":0}, | ||
17 | {"x":7, "y":0}, | ||
18 | {"x":8, "y":0}, | ||
19 | {"x":9, "y":0}, | ||
20 | {"x":10, "y":0}, | ||
21 | {"x":11, "y":0}, | ||
22 | {"x":12, "y":0}, | ||
23 | {"x":13, "y":0, "w":2}, | ||
24 | {"x":15, "y":0}, | ||
25 | |||
26 | {"x":0, "y":1, "w":1.5}, | ||
27 | {"x":1.5, "y":1}, | ||
28 | {"x":2.5, "y":1}, | ||
29 | {"x":3.5, "y":1}, | ||
30 | {"x":4.5, "y":1}, | ||
31 | {"x":5.5, "y":1}, | ||
32 | {"x":6.5, "y":1}, | ||
33 | {"x":7.5, "y":1}, | ||
34 | {"x":8.5, "y":1}, | ||
35 | {"x":9.5, "y":1}, | ||
36 | {"x":10.5, "y":1}, | ||
37 | {"x":11.5, "y":1}, | ||
38 | {"x":12.5, "y":1}, | ||
39 | {"x":13.5, "y":1, "w":1.5}, | ||
40 | {"x":15, "y":1}, | ||
41 | |||
42 | {"x":0, "y":2, "w":1.75}, | ||
43 | {"x":1.75, "y":2}, | ||
44 | {"x":2.75, "y":2}, | ||
45 | {"x":3.75, "y":2}, | ||
46 | {"x":4.75, "y":2}, | ||
47 | {"x":5.75, "y":2}, | ||
48 | {"x":6.75, "y":2}, | ||
49 | {"x":7.75, "y":2}, | ||
50 | {"x":8.75, "y":2}, | ||
51 | {"x":9.75, "y":2}, | ||
52 | {"x":10.75, "y":2}, | ||
53 | {"x":11.75, "y":2}, | ||
54 | {"x":12.75, "y":2, "w":2.25}, | ||
55 | {"x":15, "y":2}, | ||
56 | |||
57 | {"x":0, "y":3, "w":2.25}, | ||
58 | {"x":2.25, "y":3}, | ||
59 | {"x":3.25, "y":3}, | ||
60 | {"x":4.25, "y":3}, | ||
61 | {"x":5.25, "y":3}, | ||
62 | {"x":6.25, "y":3}, | ||
63 | {"x":7.25, "y":3}, | ||
64 | {"x":8.25, "y":3}, | ||
65 | {"x":9.25, "y":3}, | ||
66 | {"x":10.25, "y":3}, | ||
67 | {"x":11.25, "y":3}, | ||
68 | {"x":12.25, "y":3, "w":1.75}, | ||
69 | {"x":14, "y":3}, | ||
70 | {"x":15, "y":3}, | ||
71 | |||
72 | {"x":0, "y":4, "w":1.25}, | ||
73 | {"x":1.25, "y":4, "w":1.25}, | ||
74 | {"x":2.5, "y":4, "w":1.25}, | ||
75 | {"x":3.75, "y":4, "w":6.25}, | ||
76 | {"x":10, "y":4, "w":1.25}, | ||
77 | {"x":11.25, "y":4, "w":1.25}, | ||
78 | {"x":13, "y":4}, | ||
79 | {"x":14, "y":4}, | ||
80 | {"x":15, "y":4} | ||
81 | ] | ||
82 | } | ||
83 | } | ||
84 | } | ||
diff --git a/keyboards/neokeys/g67/hotswap/keymaps/default/keymap.c b/keyboards/neokeys/g67/hotswap/keymaps/default/keymap.c new file mode 100644 index 000000000..9eac0afaf --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/keymaps/default/keymap.c | |||
@@ -0,0 +1,34 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
20 | [0] = LAYOUT_65_ansi_blocker( | ||
21 | KC_ESC, 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, KC_TILD, | ||
22 | 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, KC_DEL, | ||
23 | 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, KC_PGUP, | ||
24 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
26 | ), | ||
27 | [1] = LAYOUT_65_ansi_blocker( | ||
28 | _______, 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_HOME, | ||
29 | _______, RGB_TOG, KC_UP, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_PSCR, KC_SLCK, KC_PAUS, _______, KC_END, | ||
30 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, KC_INS, KC_HOME, KC_PGUP, _______, KC_PGUP, | ||
31 | _______, RESET, BL_DEC, BL_TOGG, BL_INC, KC_VOLD, KC_MUTE, KC_VOLU, _______, KC_DEL, KC_END, KC_PGDN, _______, KC_PGDN, | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
33 | ), | ||
34 | }; | ||
diff --git a/keyboards/neokeys/g67/hotswap/keymaps/via/keymap.c b/keyboards/neokeys/g67/hotswap/keymaps/via/keymap.c new file mode 100644 index 000000000..e7c96d274 --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/keymaps/via/keymap.c | |||
@@ -0,0 +1,49 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
20 | [0] = LAYOUT_65_ansi_blocker( | ||
21 | KC_ESC, 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, KC_TILD, | ||
22 | 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, KC_DEL, | ||
23 | 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, KC_PGUP, | ||
24 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
26 | ), | ||
27 | [1] = LAYOUT_65_ansi_blocker( | ||
28 | _______, 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_HOME, | ||
29 | _______, RGB_TOG, KC_UP, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_PSCR, KC_SLCK, KC_PAUS, _______, KC_END, | ||
30 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, KC_INS, KC_HOME, KC_PGUP, _______, KC_PGUP, | ||
31 | _______, RESET, BL_DEC, BL_TOGG, BL_INC, KC_VOLD, KC_MUTE, KC_VOLU, _______, KC_DEL, KC_END, KC_PGDN, _______, KC_PGDN, | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
33 | ), | ||
34 | [2] = LAYOUT_65_ansi_blocker( | ||
35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
39 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
40 | |||
41 | ), | ||
42 | [3] = LAYOUT_65_ansi_blocker( | ||
43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
47 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
48 | ), | ||
49 | }; | ||
diff --git a/keyboards/neokeys/g67/hotswap/keymaps/via/rules.mk b/keyboards/neokeys/g67/hotswap/keymaps/via/rules.mk new file mode 100644 index 000000000..152460f30 --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/keymaps/via/rules.mk | |||
@@ -0,0 +1,3 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||
3 | KEY_LOCK_ENABLE = no | ||
diff --git a/keyboards/neokeys/g67/hotswap/readme.md b/keyboards/neokeys/g67/hotswap/readme.md new file mode 100644 index 000000000..e8b428dae --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/readme.md | |||
@@ -0,0 +1,21 @@ | |||
1 | # Palette G67 Hotswap | ||
2 | |||
3 |  | ||
4 | |||
5 | A blockered 65% with per-key RGB, underglow, and USB Type C. | ||
6 | |||
7 | * Keyboard Maintainer: [The QMK Community](https://github.com/qmk) | ||
8 | * Hardware Supported: Palette G67 Hotswap (ATmega32U4) | ||
9 | * Hardware Availability: [NEO Keys](https://www.neokeys.net/) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make neokeys/palette_g67/hotswap:default | ||
14 | |||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make neokeys/palette_g67/hotswap:default:flash | ||
18 | |||
19 | To reset the board into bootloader mode, hold the key at the top left of the keyboard while connecting the USB cable (also erases persistent settings). | ||
20 | |||
21 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/neokeys/g67/hotswap/rules.mk b/keyboards/neokeys/g67/hotswap/rules.mk new file mode 100644 index 000000000..0b304a6aa --- /dev/null +++ b/keyboards/neokeys/g67/hotswap/rules.mk | |||
@@ -0,0 +1,26 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = atmel-dfu | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = no # Console for debug | ||
14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
18 | NKRO_ENABLE = no # USB Nkey Rollover | ||
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
22 | AUDIO_ENABLE = no # Audio output | ||
23 | |||
24 | KEY_LOCK_ENABLE = yes # Enable KC_LOCK support | ||
25 | |||
26 | LAYOUTS = 65_ansi_blocker | ||
diff --git a/keyboards/neokeys/g67/soldered/config.h b/keyboards/neokeys/g67/soldered/config.h new file mode 100644 index 000000000..4672d96f1 --- /dev/null +++ b/keyboards/neokeys/g67/soldered/config.h | |||
@@ -0,0 +1,71 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | #pragma once | ||
18 | |||
19 | #include "config_common.h" | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define VENDOR_ID 0x4E4B // "NK" | ||
23 | #define PRODUCT_ID 0x5053 | ||
24 | #define DEVICE_VER 0x0100 | ||
25 | #define MANUFACTURER NEO Keys | ||
26 | #define PRODUCT Palette G67 Soldered | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 5 | ||
30 | #define MATRIX_COLS 16 | ||
31 | |||
32 | /* | ||
33 | * Keyboard Matrix Assignments | ||
34 | * | ||
35 | * Change this to how you wired your keyboard | ||
36 | * COLS: AVR pins used for columns, left to right | ||
37 | * ROWS: AVR pins used for rows, top to bottom | ||
38 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
39 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
40 | * | ||
41 | */ | ||
42 | #define MATRIX_ROW_PINS { B0, B1, B2, B3, F7 } | ||
43 | #define MATRIX_COL_PINS { C7, F6, F5, F4, F1, E6, D0, D1, D2, D3, D4, D5, D6, D7, B5, B4 } | ||
44 | |||
45 | #define DIODE_DIRECTION COL2ROW | ||
46 | |||
47 | #define BACKLIGHT_PIN B6 | ||
48 | #define BACKLIGHT_BREATHING | ||
49 | #define BACKLIGHT_LEVELS 10 | ||
50 | |||
51 | #if defined(RGBLIGHT_ENABLE) | ||
52 | #define RGB_DI_PIN F0 | ||
53 | #define RGBLED_NUM 18 | ||
54 | #define RGBLIGHT_HUE_STEP 8 | ||
55 | #define RGBLIGHT_SAT_STEP 8 | ||
56 | #define RGBLIGHT_VAL_STEP 8 | ||
57 | #define RGBLIGHT_LIMIT_VAL 150 /* The maximum brightness level */ | ||
58 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
59 | /*== all animations enable ==*/ | ||
60 | #define RGBLIGHT_ANIMATIONS | ||
61 | // /*== or choose animations ==*/ | ||
62 | // #define RGBLIGHT_EFFECT_BREATHING | ||
63 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
64 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
65 | // #define RGBLIGHT_EFFECT_SNAKE | ||
66 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
67 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
68 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
69 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
70 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
71 | #endif | ||
diff --git a/keyboards/neokeys/g67/soldered/info.json b/keyboards/neokeys/g67/soldered/info.json new file mode 100644 index 000000000..b2e9208e4 --- /dev/null +++ b/keyboards/neokeys/g67/soldered/info.json | |||
@@ -0,0 +1,541 @@ | |||
1 | { | ||
2 | "keyboard_name": "NEO Keys Palette G67 Soldered", | ||
3 | "url": "", | ||
4 | "maintainer": "qmk", | ||
5 | "width": 16, | ||
6 | "height": 5, | ||
7 | "layouts": { | ||
8 | "LAYOUT_all": { | ||
9 | "layout": [ | ||
10 | {"x":0, "y":0}, | ||
11 | {"x":1, "y":0}, | ||
12 | {"x":2, "y":0}, | ||
13 | {"x":3, "y":0}, | ||
14 | {"x":4, "y":0}, | ||
15 | {"x":5, "y":0}, | ||
16 | {"x":6, "y":0}, | ||
17 | {"x":7, "y":0}, | ||
18 | {"x":8, "y":0}, | ||
19 | {"x":9, "y":0}, | ||
20 | {"x":10, "y":0}, | ||
21 | {"x":11, "y":0}, | ||
22 | {"x":12, "y":0}, | ||
23 | {"x":13, "y":0}, | ||
24 | {"x":14, "y":0}, | ||
25 | {"x":15, "y":0}, | ||
26 | |||
27 | {"x":0, "y":1, "w":1.5}, | ||
28 | {"x":1.5, "y":1}, | ||
29 | {"x":2.5, "y":1}, | ||
30 | {"x":3.5, "y":1}, | ||
31 | {"x":4.5, "y":1}, | ||
32 | {"x":5.5, "y":1}, | ||
33 | {"x":6.5, "y":1}, | ||
34 | {"x":7.5, "y":1}, | ||
35 | {"x":8.5, "y":1}, | ||
36 | {"x":9.5, "y":1}, | ||
37 | {"x":10.5, "y":1}, | ||
38 | {"x":11.5, "y":1}, | ||
39 | {"x":12.5, "y":1}, | ||
40 | {"x":13.5, "y":1, "w":1.5}, | ||
41 | {"x":15, "y":1}, | ||
42 | |||
43 | {"x":0, "y":2, "w":1.75}, | ||
44 | {"x":1.75, "y":2}, | ||
45 | {"x":2.75, "y":2}, | ||
46 | {"x":3.75, "y":2}, | ||
47 | {"x":4.75, "y":2}, | ||
48 | {"x":5.75, "y":2}, | ||
49 | {"x":6.75, "y":2}, | ||
50 | {"x":7.75, "y":2}, | ||
51 | {"x":8.75, "y":2}, | ||
52 | {"x":9.75, "y":2}, | ||
53 | {"x":10.75, "y":2}, | ||
54 | {"x":11.75, "y":2}, | ||
55 | {"x":12.75, "y":2}, | ||
56 | {"x":13.75, "y":2, "w":1.25}, | ||
57 | {"x":15, "y":2}, | ||
58 | |||
59 | {"x":0, "y":3, "w":1.25}, | ||
60 | {"x":1.25, "y":3}, | ||
61 | {"x":2.25, "y":3}, | ||
62 | {"x":3.25, "y":3}, | ||
63 | {"x":4.25, "y":3}, | ||
64 | {"x":5.25, "y":3}, | ||
65 | {"x":6.25, "y":3}, | ||
66 | {"x":7.25, "y":3}, | ||
67 | {"x":8.25, "y":3}, | ||
68 | {"x":9.25, "y":3}, | ||
69 | {"x":10.25, "y":3}, | ||
70 | {"x":11.25, "y":3}, | ||
71 | {"x":12.25, "y":3, "w":1.75}, | ||
72 | {"x":14, "y":3}, | ||
73 | {"x":15, "y":3}, | ||
74 | |||
75 | {"x":0, "y":4, "w":1.25}, | ||
76 | {"x":1.25, "y":4, "w":1.25}, | ||
77 | {"x":2.5, "y":4, "w":1.25}, | ||
78 | {"x":3.75, "y":4, "w":6.25}, | ||
79 | {"x":10, "y":4}, | ||
80 | {"x":11, "y":4}, | ||
81 | {"x":12, "y":4}, | ||
82 | {"x":13, "y":4}, | ||
83 | {"x":14, "y":4}, | ||
84 | {"x":15, "y":4} | ||
85 | ] | ||
86 | }, | ||
87 | "LAYOUT_65_ansi": { | ||
88 | "layout": [ | ||
89 | {"x":0, "y":0}, | ||
90 | {"x":1, "y":0}, | ||
91 | {"x":2, "y":0}, | ||
92 | {"x":3, "y":0}, | ||
93 | {"x":4, "y":0}, | ||
94 | {"x":5, "y":0}, | ||
95 | {"x":6, "y":0}, | ||
96 | {"x":7, "y":0}, | ||
97 | {"x":8, "y":0}, | ||
98 | {"x":9, "y":0}, | ||
99 | {"x":10, "y":0}, | ||
100 | {"x":11, "y":0}, | ||
101 | {"x":12, "y":0}, | ||
102 | {"x":13, "y":0, "w":2}, | ||
103 | {"x":15, "y":0}, | ||
104 | |||
105 | {"x":0, "y":1, "w":1.5}, | ||
106 | {"x":1.5, "y":1}, | ||
107 | {"x":2.5, "y":1}, | ||
108 | {"x":3.5, "y":1}, | ||
109 | {"x":4.5, "y":1}, | ||
110 | {"x":5.5, "y":1}, | ||
111 | {"x":6.5, "y":1}, | ||
112 | {"x":7.5, "y":1}, | ||
113 | {"x":8.5, "y":1}, | ||
114 | {"x":9.5, "y":1}, | ||
115 | {"x":10.5, "y":1}, | ||
116 | {"x":11.5, "y":1}, | ||
117 | {"x":12.5, "y":1}, | ||
118 | {"x":13.5, "y":1, "w":1.5}, | ||
119 | {"x":15, "y":1}, | ||
120 | |||
121 | {"x":0, "y":2, "w":1.75}, | ||
122 | {"x":1.75, "y":2}, | ||
123 | {"x":2.75, "y":2}, | ||
124 | {"x":3.75, "y":2}, | ||
125 | {"x":4.75, "y":2}, | ||
126 | {"x":5.75, "y":2}, | ||
127 | {"x":6.75, "y":2}, | ||
128 | {"x":7.75, "y":2}, | ||
129 | {"x":8.75, "y":2}, | ||
130 | {"x":9.75, "y":2}, | ||
131 | {"x":10.75, "y":2}, | ||
132 | {"x":11.75, "y":2}, | ||
133 | {"x":12.75, "y":2, "w":2.25}, | ||
134 | {"x":15, "y":2}, | ||
135 | |||
136 | {"x":0, "y":3, "w":2.25}, | ||
137 | {"x":2.25, "y":3}, | ||
138 | {"x":3.25, "y":3}, | ||
139 | {"x":4.25, "y":3}, | ||
140 | {"x":5.25, "y":3}, | ||
141 | {"x":6.25, "y":3}, | ||
142 | {"x":7.25, "y":3}, | ||
143 | {"x":8.25, "y":3}, | ||
144 | {"x":9.25, "y":3}, | ||
145 | {"x":10.25, "y":3}, | ||
146 | {"x":11.25, "y":3}, | ||
147 | {"x":12.25, "y":3, "w":1.75}, | ||
148 | {"x":14, "y":3}, | ||
149 | {"x":15, "y":3}, | ||
150 | |||
151 | {"x":0, "y":4, "w":1.25}, | ||
152 | {"x":1.25, "y":4, "w":1.25}, | ||
153 | {"x":2.5, "y":4, "w":1.25}, | ||
154 | {"x":3.75, "y":4, "w":6.25}, | ||
155 | {"x":10, "y":4}, | ||
156 | {"x":11, "y":4}, | ||
157 | {"x":12, "y":4}, | ||
158 | {"x":13, "y":4}, | ||
159 | {"x":14, "y":4}, | ||
160 | {"x":15, "y":4} | ||
161 | ] | ||
162 | }, | ||
163 | "LAYOUT_65_ansi_blocker": { | ||
164 | "layout": [ | ||
165 | {"x":0, "y":0}, | ||
166 | {"x":1, "y":0}, | ||
167 | {"x":2, "y":0}, | ||
168 | {"x":3, "y":0}, | ||
169 | {"x":4, "y":0}, | ||
170 | {"x":5, "y":0}, | ||
171 | {"x":6, "y":0}, | ||
172 | {"x":7, "y":0}, | ||
173 | {"x":8, "y":0}, | ||
174 | {"x":9, "y":0}, | ||
175 | {"x":10, "y":0}, | ||
176 | {"x":11, "y":0}, | ||
177 | {"x":12, "y":0}, | ||
178 | {"x":13, "y":0, "w":2}, | ||
179 | {"x":15, "y":0}, | ||
180 | |||
181 | {"x":0, "y":1, "w":1.5}, | ||
182 | {"x":1.5, "y":1}, | ||
183 | {"x":2.5, "y":1}, | ||
184 | {"x":3.5, "y":1}, | ||
185 | {"x":4.5, "y":1}, | ||
186 | {"x":5.5, "y":1}, | ||
187 | {"x":6.5, "y":1}, | ||
188 | {"x":7.5, "y":1}, | ||
189 | {"x":8.5, "y":1}, | ||
190 | {"x":9.5, "y":1}, | ||
191 | {"x":10.5, "y":1}, | ||
192 | {"x":11.5, "y":1}, | ||
193 | {"x":12.5, "y":1}, | ||
194 | {"x":13.5, "y":1, "w":1.5}, | ||
195 | {"x":15, "y":1}, | ||
196 | |||
197 | {"x":0, "y":2, "w":1.75}, | ||
198 | {"x":1.75, "y":2}, | ||
199 | {"x":2.75, "y":2}, | ||
200 | {"x":3.75, "y":2}, | ||
201 | {"x":4.75, "y":2}, | ||
202 | {"x":5.75, "y":2}, | ||
203 | {"x":6.75, "y":2}, | ||
204 | {"x":7.75, "y":2}, | ||
205 | {"x":8.75, "y":2}, | ||
206 | {"x":9.75, "y":2}, | ||
207 | {"x":10.75, "y":2}, | ||
208 | {"x":11.75, "y":2}, | ||
209 | {"x":12.75, "y":2, "w":2.25}, | ||
210 | {"x":15, "y":2}, | ||
211 | |||
212 | {"x":0, "y":3, "w":2.25}, | ||
213 | {"x":2.25, "y":3}, | ||
214 | {"x":3.25, "y":3}, | ||
215 | {"x":4.25, "y":3}, | ||
216 | {"x":5.25, "y":3}, | ||
217 | {"x":6.25, "y":3}, | ||
218 | {"x":7.25, "y":3}, | ||
219 | {"x":8.25, "y":3}, | ||
220 | {"x":9.25, "y":3}, | ||
221 | {"x":10.25, "y":3}, | ||
222 | {"x":11.25, "y":3}, | ||
223 | {"x":12.25, "y":3, "w":1.75}, | ||
224 | {"x":14, "y":3}, | ||
225 | {"x":15, "y":3}, | ||
226 | |||
227 | {"x":0, "y":4, "w":1.25}, | ||
228 | {"x":1.25, "y":4, "w":1.25}, | ||
229 | {"x":2.5, "y":4, "w":1.25}, | ||
230 | {"x":3.75, "y":4, "w":6.25}, | ||
231 | {"x":10, "y":4, "w":1.25}, | ||
232 | {"x":11.25, "y":4, "w":1.25}, | ||
233 | {"x":13, "y":4}, | ||
234 | {"x":14, "y":4}, | ||
235 | {"x":15, "y":4} | ||
236 | ] | ||
237 | }, | ||
238 | "LAYOUT_65_ansi_blocker_tsangan": { | ||
239 | "layout": [ | ||
240 | {"x":0, "y":0}, | ||
241 | {"x":1, "y":0}, | ||
242 | {"x":2, "y":0}, | ||
243 | {"x":3, "y":0}, | ||
244 | {"x":4, "y":0}, | ||
245 | {"x":5, "y":0}, | ||
246 | {"x":6, "y":0}, | ||
247 | {"x":7, "y":0}, | ||
248 | {"x":8, "y":0}, | ||
249 | {"x":9, "y":0}, | ||
250 | {"x":10, "y":0}, | ||
251 | {"x":11, "y":0}, | ||
252 | {"x":12, "y":0}, | ||
253 | {"x":13, "y":0, "w":2}, | ||
254 | {"x":15, "y":0}, | ||
255 | |||
256 | {"x":0, "y":1, "w":1.5}, | ||
257 | {"x":1.5, "y":1}, | ||
258 | {"x":2.5, "y":1}, | ||
259 | {"x":3.5, "y":1}, | ||
260 | {"x":4.5, "y":1}, | ||
261 | {"x":5.5, "y":1}, | ||
262 | {"x":6.5, "y":1}, | ||
263 | {"x":7.5, "y":1}, | ||
264 | {"x":8.5, "y":1}, | ||
265 | {"x":9.5, "y":1}, | ||
266 | {"x":10.5, "y":1}, | ||
267 | {"x":11.5, "y":1}, | ||
268 | {"x":12.5, "y":1}, | ||
269 | {"x":13.5, "y":1, "w":1.5}, | ||
270 | {"x":15, "y":1}, | ||
271 | |||
272 | {"x":0, "y":2, "w":1.75}, | ||
273 | {"x":1.75, "y":2}, | ||
274 | {"x":2.75, "y":2}, | ||
275 | {"x":3.75, "y":2}, | ||
276 | {"x":4.75, "y":2}, | ||
277 | {"x":5.75, "y":2}, | ||
278 | {"x":6.75, "y":2}, | ||
279 | {"x":7.75, "y":2}, | ||
280 | {"x":8.75, "y":2}, | ||
281 | {"x":9.75, "y":2}, | ||
282 | {"x":10.75, "y":2}, | ||
283 | {"x":11.75, "y":2}, | ||
284 | {"x":12.75, "y":2, "w":2.25}, | ||
285 | {"x":15, "y":2}, | ||
286 | |||
287 | {"x":0, "y":3, "w":2.25}, | ||
288 | {"x":2.25, "y":3}, | ||
289 | {"x":3.25, "y":3}, | ||
290 | {"x":4.25, "y":3}, | ||
291 | {"x":5.25, "y":3}, | ||
292 | {"x":6.25, "y":3}, | ||
293 | {"x":7.25, "y":3}, | ||
294 | {"x":8.25, "y":3}, | ||
295 | {"x":9.25, "y":3}, | ||
296 | {"x":10.25, "y":3}, | ||
297 | {"x":11.25, "y":3}, | ||
298 | {"x":12.25, "y":3, "w":1.75}, | ||
299 | {"x":14, "y":3}, | ||
300 | {"x":15, "y":3}, | ||
301 | |||
302 | {"x":0, "y":4, "w":1.5}, | ||
303 | {"x":1.5, "y":4}, | ||
304 | {"x":2.5, "y":4, "w":1.5}, | ||
305 | {"x":4, "y":4, "w":7}, | ||
306 | {"x":11, "y":4, "w":1.5}, | ||
307 | {"x":13, "y":4}, | ||
308 | {"x":14, "y":4}, | ||
309 | {"x":15, "y":4} | ||
310 | ] | ||
311 | }, | ||
312 | "LAYOUT_65_iso": { | ||
313 | "layout": [ | ||
314 | {"x":0, "y":0}, | ||
315 | {"x":1, "y":0}, | ||
316 | {"x":2, "y":0}, | ||
317 | {"x":3, "y":0}, | ||
318 | {"x":4, "y":0}, | ||
319 | {"x":5, "y":0}, | ||
320 | {"x":6, "y":0}, | ||
321 | {"x":7, "y":0}, | ||
322 | {"x":8, "y":0}, | ||
323 | {"x":9, "y":0}, | ||
324 | {"x":10, "y":0}, | ||
325 | {"x":11, "y":0}, | ||
326 | {"x":12, "y":0}, | ||
327 | {"x":13, "y":0, "w":2}, | ||
328 | {"x":15, "y":0}, | ||
329 | |||
330 | {"x":0, "y":1, "w":1.5}, | ||
331 | {"x":1.5, "y":1}, | ||
332 | {"x":2.5, "y":1}, | ||
333 | {"x":3.5, "y":1}, | ||
334 | {"x":4.5, "y":1}, | ||
335 | {"x":5.5, "y":1}, | ||
336 | {"x":6.5, "y":1}, | ||
337 | {"x":7.5, "y":1}, | ||
338 | {"x":8.5, "y":1}, | ||
339 | {"x":9.5, "y":1}, | ||
340 | {"x":10.5, "y":1}, | ||
341 | {"x":11.5, "y":1}, | ||
342 | {"x":12.5, "y":1}, | ||
343 | {"x":15, "y":1}, | ||
344 | |||
345 | {"x":0, "y":2, "w":1.75}, | ||
346 | {"x":1.75, "y":2}, | ||
347 | {"x":2.75, "y":2}, | ||
348 | {"x":3.75, "y":2}, | ||
349 | {"x":4.75, "y":2}, | ||
350 | {"x":5.75, "y":2}, | ||
351 | {"x":6.75, "y":2}, | ||
352 | {"x":7.75, "y":2}, | ||
353 | {"x":8.75, "y":2}, | ||
354 | {"x":9.75, "y":2}, | ||
355 | {"x":10.75, "y":2}, | ||
356 | {"x":11.75, "y":2}, | ||
357 | {"x":12.75, "y":2}, | ||
358 | {"x":13.75, "y":1, "w":1.25, "h":2}, | ||
359 | {"x":15, "y":2}, | ||
360 | |||
361 | {"x":0, "y":3, "w":1.25}, | ||
362 | {"x":1.25, "y":3}, | ||
363 | {"x":2.25, "y":3}, | ||
364 | {"x":3.25, "y":3}, | ||
365 | {"x":4.25, "y":3}, | ||
366 | {"x":5.25, "y":3}, | ||
367 | {"x":6.25, "y":3}, | ||
368 | {"x":7.25, "y":3}, | ||
369 | {"x":8.25, "y":3}, | ||
370 | {"x":9.25, "y":3}, | ||
371 | {"x":10.25, "y":3}, | ||
372 | {"x":11.25, "y":3}, | ||
373 | {"x":12.25, "y":3, "w":1.75}, | ||
374 | {"x":14, "y":3}, | ||
375 | {"x":15, "y":3}, | ||
376 | |||
377 | {"x":0, "y":4, "w":1.25}, | ||
378 | {"x":1.25, "y":4, "w":1.25}, | ||
379 | {"x":2.5, "y":4, "w":1.25}, | ||
380 | {"x":3.75, "y":4, "w":6.25}, | ||
381 | {"x":10, "y":4}, | ||
382 | {"x":11, "y":4}, | ||
383 | {"x":12, "y":4}, | ||
384 | {"x":13, "y":4}, | ||
385 | {"x":14, "y":4}, | ||
386 | {"x":15, "y":4} | ||
387 | ] | ||
388 | }, | ||
389 | "LAYOUT_65_iso_blocker": { | ||
390 | "layout": [ | ||
391 | {"x":0, "y":0}, | ||
392 | {"x":1, "y":0}, | ||
393 | {"x":2, "y":0}, | ||
394 | {"x":3, "y":0}, | ||
395 | {"x":4, "y":0}, | ||
396 | {"x":5, "y":0}, | ||
397 | {"x":6, "y":0}, | ||
398 | {"x":7, "y":0}, | ||
399 | {"x":8, "y":0}, | ||
400 | {"x":9, "y":0}, | ||
401 | {"x":10, "y":0}, | ||
402 | {"x":11, "y":0}, | ||
403 | {"x":12, "y":0}, | ||
404 | {"x":13, "y":0, "w":2}, | ||
405 | {"x":15, "y":0}, | ||
406 | |||
407 | {"x":0, "y":1, "w":1.5}, | ||
408 | {"x":1.5, "y":1}, | ||
409 | {"x":2.5, "y":1}, | ||
410 | {"x":3.5, "y":1}, | ||
411 | {"x":4.5, "y":1}, | ||
412 | {"x":5.5, "y":1}, | ||
413 | {"x":6.5, "y":1}, | ||
414 | {"x":7.5, "y":1}, | ||
415 | {"x":8.5, "y":1}, | ||
416 | {"x":9.5, "y":1}, | ||
417 | {"x":10.5, "y":1}, | ||
418 | {"x":11.5, "y":1}, | ||
419 | {"x":12.5, "y":1}, | ||
420 | {"x":15, "y":1}, | ||
421 | |||
422 | {"x":0, "y":2, "w":1.75}, | ||
423 | {"x":1.75, "y":2}, | ||
424 | {"x":2.75, "y":2}, | ||
425 | {"x":3.75, "y":2}, | ||
426 | {"x":4.75, "y":2}, | ||
427 | {"x":5.75, "y":2}, | ||
428 | {"x":6.75, "y":2}, | ||
429 | {"x":7.75, "y":2}, | ||
430 | {"x":8.75, "y":2}, | ||
431 | {"x":9.75, "y":2}, | ||
432 | {"x":10.75, "y":2}, | ||
433 | {"x":11.75, "y":2}, | ||
434 | {"x":12.75, "y":2}, | ||
435 | {"x":13.75, "y":1, "w":1.25, "h":2}, | ||
436 | {"x":15, "y":2}, | ||
437 | |||
438 | {"x":0, "y":3, "w":1.25}, | ||
439 | {"x":1.25, "y":3}, | ||
440 | {"x":2.25, "y":3}, | ||
441 | {"x":3.25, "y":3}, | ||
442 | {"x":4.25, "y":3}, | ||
443 | {"x":5.25, "y":3}, | ||
444 | {"x":6.25, "y":3}, | ||
445 | {"x":7.25, "y":3}, | ||
446 | {"x":8.25, "y":3}, | ||
447 | {"x":9.25, "y":3}, | ||
448 | {"x":10.25, "y":3}, | ||
449 | {"x":11.25, "y":3}, | ||
450 | {"x":12.25, "y":3, "w":1.75}, | ||
451 | {"x":14, "y":3}, | ||
452 | {"x":15, "y":3}, | ||
453 | |||
454 | {"x":0, "y":4, "w":1.25}, | ||
455 | {"x":1.25, "y":4, "w":1.25}, | ||
456 | {"x":2.5, "y":4, "w":1.25}, | ||
457 | {"x":3.75, "y":4, "w":6.25}, | ||
458 | {"x":10, "y":4, "w":1.25}, | ||
459 | {"x":11.25, "y":4, "w":1.25}, | ||
460 | {"x":13, "y":4}, | ||
461 | {"x":14, "y":4}, | ||
462 | {"x":15, "y":4} | ||
463 | ] | ||
464 | }, | ||
465 | "LAYOUT_65_iso_blocker_tsangan": { | ||
466 | "layout": [ | ||
467 | {"x":0, "y":0}, | ||
468 | {"x":1, "y":0}, | ||
469 | {"x":2, "y":0}, | ||
470 | {"x":3, "y":0}, | ||
471 | {"x":4, "y":0}, | ||
472 | {"x":5, "y":0}, | ||
473 | {"x":6, "y":0}, | ||
474 | {"x":7, "y":0}, | ||
475 | {"x":8, "y":0}, | ||
476 | {"x":9, "y":0}, | ||
477 | {"x":10, "y":0}, | ||
478 | {"x":11, "y":0}, | ||
479 | {"x":12, "y":0}, | ||
480 | {"x":13, "y":0, "w":2}, | ||
481 | {"x":15, "y":0}, | ||
482 | |||
483 | {"x":0, "y":1, "w":1.5}, | ||
484 | {"x":1.5, "y":1}, | ||
485 | {"x":2.5, "y":1}, | ||
486 | {"x":3.5, "y":1}, | ||
487 | {"x":4.5, "y":1}, | ||
488 | {"x":5.5, "y":1}, | ||
489 | {"x":6.5, "y":1}, | ||
490 | {"x":7.5, "y":1}, | ||
491 | {"x":8.5, "y":1}, | ||
492 | {"x":9.5, "y":1}, | ||
493 | {"x":10.5, "y":1}, | ||
494 | {"x":11.5, "y":1}, | ||
495 | {"x":12.5, "y":1}, | ||
496 | {"x":15, "y":1}, | ||
497 | |||
498 | {"x":0, "y":2, "w":1.75}, | ||
499 | {"x":1.75, "y":2}, | ||
500 | {"x":2.75, "y":2}, | ||
501 | {"x":3.75, "y":2}, | ||
502 | {"x":4.75, "y":2}, | ||
503 | {"x":5.75, "y":2}, | ||
504 | {"x":6.75, "y":2}, | ||
505 | {"x":7.75, "y":2}, | ||
506 | {"x":8.75, "y":2}, | ||
507 | {"x":9.75, "y":2}, | ||
508 | {"x":10.75, "y":2}, | ||
509 | {"x":11.75, "y":2}, | ||
510 | {"x":12.75, "y":2}, | ||
511 | {"x":13.75, "y":1, "w":1.25, "h":2}, | ||
512 | {"x":15, "y":2}, | ||
513 | |||
514 | {"x":0, "y":3, "w":1.25}, | ||
515 | {"x":1.25, "y":3}, | ||
516 | {"x":2.25, "y":3}, | ||
517 | {"x":3.25, "y":3}, | ||
518 | {"x":4.25, "y":3}, | ||
519 | {"x":5.25, "y":3}, | ||
520 | {"x":6.25, "y":3}, | ||
521 | {"x":7.25, "y":3}, | ||
522 | {"x":8.25, "y":3}, | ||
523 | {"x":9.25, "y":3}, | ||
524 | {"x":10.25, "y":3}, | ||
525 | {"x":11.25, "y":3}, | ||
526 | {"x":12.25, "y":3, "w":1.75}, | ||
527 | {"x":14, "y":3}, | ||
528 | {"x":15, "y":3}, | ||
529 | |||
530 | {"x":0, "y":4, "w":1.5}, | ||
531 | {"x":1.5, "y":4}, | ||
532 | {"x":2.5, "y":4, "w":1.5}, | ||
533 | {"x":4, "y":4, "w":7}, | ||
534 | {"x":11, "y":4, "w":1.5}, | ||
535 | {"x":13, "y":4}, | ||
536 | {"x":14, "y":4}, | ||
537 | {"x":15, "y":4} | ||
538 | ] | ||
539 | } | ||
540 | } | ||
541 | } | ||
diff --git a/keyboards/neokeys/g67/soldered/keymaps/default/keymap.c b/keyboards/neokeys/g67/soldered/keymaps/default/keymap.c new file mode 100644 index 000000000..867fb5ca9 --- /dev/null +++ b/keyboards/neokeys/g67/soldered/keymaps/default/keymap.c | |||
@@ -0,0 +1,34 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
20 | [0] = LAYOUT_all( | ||
21 | KC_ESC, 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, KC_BSLS, KC_GRV, | ||
22 | 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, KC_DEL, | ||
23 | 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_GRV, KC_ENT, KC_PGUP, | ||
24 | KC_LSFT, KC_BSLS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
26 | ), | ||
27 | [1] = LAYOUT_all( | ||
28 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, | ||
29 | _______, RGB_TOG, KC_UP, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, | ||
30 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, KC_INS, KC_HOME, KC_PGUP, _______, _______, | ||
31 | _______, _______, RESET, BL_DEC, BL_TOGG, BL_INC, KC_VOLD, KC_MUTE, KC_VOLU, _______, KC_DEL, KC_END, KC_PGDN, _______, _______, | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
33 | ), | ||
34 | }; | ||
diff --git a/keyboards/neokeys/g67/soldered/keymaps/via/keymap.c b/keyboards/neokeys/g67/soldered/keymaps/via/keymap.c new file mode 100644 index 000000000..247c7fadf --- /dev/null +++ b/keyboards/neokeys/g67/soldered/keymaps/via/keymap.c | |||
@@ -0,0 +1,48 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
20 | [0] = LAYOUT_all( | ||
21 | KC_ESC, 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, KC_BSLS, KC_GRV, | ||
22 | 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, KC_DEL, | ||
23 | 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_GRV, KC_ENT, KC_PGUP, | ||
24 | KC_LSFT, KC_BSLS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
26 | ), | ||
27 | [1] = LAYOUT_all( | ||
28 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, | ||
29 | _______, RGB_TOG, KC_UP, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, | ||
30 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, KC_INS, KC_HOME, KC_PGUP, _______, _______, | ||
31 | _______, _______, RESET, BL_DEC, BL_TOGG, BL_INC, KC_VOLD, KC_MUTE, KC_VOLU, _______, KC_DEL, KC_END, KC_PGDN, _______, _______, | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
33 | ), | ||
34 | [2] = LAYOUT_all( | ||
35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
40 | ), | ||
41 | [3] = LAYOUT_all( | ||
42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
47 | ), | ||
48 | }; | ||
diff --git a/keyboards/neokeys/g67/soldered/keymaps/via/rules.mk b/keyboards/neokeys/g67/soldered/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/neokeys/g67/soldered/keymaps/via/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/neokeys/g67/soldered/readme.md b/keyboards/neokeys/g67/soldered/readme.md new file mode 100644 index 000000000..5ac1196bd --- /dev/null +++ b/keyboards/neokeys/g67/soldered/readme.md | |||
@@ -0,0 +1,21 @@ | |||
1 | # Palette G67 Soldered | ||
2 | |||
3 |  | ||
4 | |||
5 | A blockered 65% with RGB underglow, USB Type C, and footprints for in-switch backlight. | ||
6 | |||
7 | * Keyboard Maintainer: [The QMK Community](https://github.com/qmk) | ||
8 | * Hardware Supported: Palette G67 Soldered (ATmega32U4) | ||
9 | * Hardware Availability: [NEO Keys](https://www.neokeys.net/) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make neokeys/palette_g67/soldered:default | ||
14 | |||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make neokeys/palette_g67/soldered:default:flash | ||
18 | |||
19 | To reset the board into bootloader mode, hold the key at the top left of the keyboard while connecting the USB cable (also erases persistent settings). | ||
20 | |||
21 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/neokeys/g67/soldered/rules.mk b/keyboards/neokeys/g67/soldered/rules.mk new file mode 100644 index 000000000..7ddf623a2 --- /dev/null +++ b/keyboards/neokeys/g67/soldered/rules.mk | |||
@@ -0,0 +1,24 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = atmel-dfu | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = no # Console for debug | ||
14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
18 | NKRO_ENABLE = no # USB Nkey Rollover | ||
19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
22 | AUDIO_ENABLE = no # Audio output | ||
23 | |||
24 | LAYOUTS = 65_ansi 65_ansi_blocker 65_ansi_blocker_tsangan 65_iso 65_iso_blocker # 65_iso_blocker_tsangan | ||
diff --git a/keyboards/neokeys/g67/soldered/soldered.c b/keyboards/neokeys/g67/soldered/soldered.c new file mode 100644 index 000000000..a2c5a258a --- /dev/null +++ b/keyboards/neokeys/g67/soldered/soldered.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 "soldered.h" | ||
diff --git a/keyboards/neokeys/g67/soldered/soldered.h b/keyboards/neokeys/g67/soldered/soldered.h new file mode 100644 index 000000000..d68f07d2e --- /dev/null +++ b/keyboards/neokeys/g67/soldered/soldered.h | |||
@@ -0,0 +1,117 @@ | |||
1 | /* Copyright 2021 James Young (@noroadsleft) | ||
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 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | #define LAYOUT_all( \ | ||
22 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, \ | ||
23 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, K1F, \ | ||
24 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2F, \ | ||
25 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
26 | K40, K41, K42, K47, K48, K49, K4B, K4C, K4D, K4F \ | ||
27 | ) { \ | ||
28 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F }, \ | ||
29 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, K1E, K1F }, \ | ||
30 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, KC_NO, K2F }, \ | ||
31 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
32 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, K48, K49, KC_NO, K4B, K4C, K4D, KC_NO, K4F }, \ | ||
33 | } | ||
34 | |||
35 | #define LAYOUT_65_ansi( \ | ||
36 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, K0F, \ | ||
37 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, K1F, \ | ||
38 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2F, \ | ||
39 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
40 | K40, K41, K42, K47, K48, K49, K4B, K4C, K4D, K4F \ | ||
41 | ) { \ | ||
42 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E, K0F }, \ | ||
43 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, K1E, K1F }, \ | ||
44 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D, KC_NO, K2F }, \ | ||
45 | { K30, KC_NO, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
46 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, K48, K49, KC_NO, K4B, K4C, K4D, KC_NO, K4F }, \ | ||
47 | } | ||
48 | |||
49 | #define LAYOUT_65_ansi_blocker( \ | ||
50 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, K0F, \ | ||
51 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, K1F, \ | ||
52 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2F, \ | ||
53 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
54 | K40, K41, K42, K47, K48, K49, K4C, K4D, K4F \ | ||
55 | ) { \ | ||
56 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E, K0F }, \ | ||
57 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, K1E, K1F }, \ | ||
58 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D, KC_NO, K2F }, \ | ||
59 | { K30, KC_NO, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
60 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, K48, K49, KC_NO, KC_NO, K4C, K4D, KC_NO, K4F }, \ | ||
61 | } | ||
62 | |||
63 | #define LAYOUT_65_ansi_blocker_tsangan( \ | ||
64 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, K0F, \ | ||
65 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, K1F, \ | ||
66 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2F, \ | ||
67 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
68 | K40, K41, K42, K47, K49, K4C, K4D, K4F \ | ||
69 | ) { \ | ||
70 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E, K0F }, \ | ||
71 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, K1E, K1F }, \ | ||
72 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D, KC_NO, K2F }, \ | ||
73 | { K30, KC_NO, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
74 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, KC_NO, K49, KC_NO, KC_NO, K4C, K4D, KC_NO, K4F }, \ | ||
75 | } | ||
76 | |||
77 | #define LAYOUT_65_iso( \ | ||
78 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, K0F, \ | ||
79 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1F, \ | ||
80 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2F, \ | ||
81 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
82 | K40, K41, K42, K47, K48, K49, K4B, K4C, K4D, K4F \ | ||
83 | ) { \ | ||
84 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E, K0F }, \ | ||
85 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, KC_NO, K1F }, \ | ||
86 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, KC_NO, K2F }, \ | ||
87 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
88 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, K48, K49, KC_NO, K4B, K4C, K4D, KC_NO, K4F }, \ | ||
89 | } | ||
90 | |||
91 | #define LAYOUT_65_iso_blocker( \ | ||
92 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, K0F, \ | ||
93 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1F, \ | ||
94 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2F, \ | ||
95 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
96 | K40, K41, K42, K47, K48, K49, K4C, K4D, K4F \ | ||
97 | ) { \ | ||
98 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E, K0F }, \ | ||
99 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, KC_NO, K1F }, \ | ||
100 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, KC_NO, K2F }, \ | ||
101 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
102 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, K48, K49, KC_NO, KC_NO, K4C, K4D, KC_NO, K4F }, \ | ||
103 | } | ||
104 | |||
105 | #define LAYOUT_65_iso_blocker_tsangan( \ | ||
106 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, K0F, \ | ||
107 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1F, \ | ||
108 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2F, \ | ||
109 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, K3F, \ | ||
110 | K40, K41, K42, K47, K49, K4C, K4D, K4F \ | ||
111 | ) { \ | ||
112 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E, K0F }, \ | ||
113 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, KC_NO, K1F }, \ | ||
114 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, KC_NO, K2F }, \ | ||
115 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E, K3F }, \ | ||
116 | { K40, K41, K42, KC_NO, KC_NO, KC_NO, KC_NO, K47, KC_NO, K49, KC_NO, KC_NO, K4C, K4D, KC_NO, K4F }, \ | ||
117 | } | ||