diff options
Diffstat (limited to 'keyboards/draytronics')
34 files changed, 2793 insertions, 0 deletions
diff --git a/keyboards/draytronics/daisy/config.h b/keyboards/draytronics/daisy/config.h new file mode 100644 index 000000000..b524f8902 --- /dev/null +++ b/keyboards/draytronics/daisy/config.h | |||
@@ -0,0 +1,112 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #include "config_common.h" | ||
22 | |||
23 | #define VENDOR_ID 0x4454 //DT for DrayTronics | ||
24 | #define PRODUCT_ID 0x4441 //DA for Daisy | ||
25 | #define DEVICE_VER 0x0100 //Version 1 | ||
26 | #define MANUFACTURER Draytronics | ||
27 | #define PRODUCT DAISY | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 3 | ||
31 | #define MATRIX_COLS 4 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | |||
44 | #define MATRIX_ROW_PINS { B0, C0, C1} | ||
45 | #define MATRIX_COL_PINS { C2, C3, C4, C5 } | ||
46 | #define UNUSED_PINS | ||
47 | |||
48 | #define ENCODERS_PAD_A { B1, D0 } | ||
49 | #define ENCODERS_PAD_B { B2, D1 } | ||
50 | /* COL2ROW, ROW2COL*/ | ||
51 | #define DIODE_DIRECTION COL2ROW | ||
52 | #define TAP_CODE_DELAY 10 | ||
53 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
54 | #define DEBOUNCE 5 | ||
55 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
56 | //#define MATRIX_HAS_GHOST | ||
57 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
58 | #define LOCKING_SUPPORT_ENABLE | ||
59 | /* Locking resynchronize hack */ | ||
60 | #define LOCKING_RESYNC_ENABLE | ||
61 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
62 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
63 | */ | ||
64 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
65 | /* | ||
66 | * Force NKRO | ||
67 | * | ||
68 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
69 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
70 | * makefile for this to work.) | ||
71 | * | ||
72 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
73 | * until the next keyboard reset. | ||
74 | * | ||
75 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
76 | * fully operational during normal computer usage. | ||
77 | * | ||
78 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
79 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
80 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
81 | * power-up. | ||
82 | * | ||
83 | */ | ||
84 | //#define FORCE_NKRO | ||
85 | /* | ||
86 | * Feature disable options | ||
87 | * These options are also useful to firmware size reduction. | ||
88 | */ | ||
89 | /* disable debug print */ | ||
90 | //#define NO_DEBUG | ||
91 | /* disable print */ | ||
92 | //#define NO_PRINT | ||
93 | /* disable action features */ | ||
94 | //#define NO_ACTION_LAYER | ||
95 | //#define NO_ACTION_TAPPING | ||
96 | //#define NO_ACTION_ONESHOT | ||
97 | /* disable these deprecated features by default */ | ||
98 | #define NO_ACTION_MACRO | ||
99 | #define NO_ACTION_FUNCTION | ||
100 | |||
101 | //Underglow | ||
102 | #define RGB_DI_PIN D4 // Underglow led pin | ||
103 | #ifdef RGB_DI_PIN | ||
104 | #define RGBLED_NUM 4 | ||
105 | #define RGBLIGHT_HUE_STEP 8 | ||
106 | #define RGBLIGHT_SAT_STEP 8 | ||
107 | #define RGBLIGHT_VAL_STEP 8 | ||
108 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
109 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
110 | /*== all animations enable ==*/ | ||
111 | #define RGBLIGHT_ANIMATIONS | ||
112 | #endif | ||
diff --git a/keyboards/draytronics/daisy/daisy.c b/keyboards/draytronics/daisy/daisy.c new file mode 100644 index 000000000..149cb3d0c --- /dev/null +++ b/keyboards/draytronics/daisy/daisy.c | |||
@@ -0,0 +1,19 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include "daisy.h" | ||
diff --git a/keyboards/draytronics/daisy/daisy.h b/keyboards/draytronics/daisy/daisy.h new file mode 100644 index 000000000..2c4798943 --- /dev/null +++ b/keyboards/draytronics/daisy/daisy.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #define _x_ KC_NO | ||
22 | |||
23 | #include "quantum.h" | ||
24 | |||
25 | #define LAYOUT( \ | ||
26 | K00, K03, \ | ||
27 | K10, K11, K12, K13, \ | ||
28 | K20, K21, K22, K23 \ | ||
29 | ) { \ | ||
30 | { K00, _x_, _x_, K03, }, \ | ||
31 | { K10, K11, K12, K13, }, \ | ||
32 | { K20, K21, K22, K23, }, \ | ||
33 | } | ||
diff --git a/keyboards/draytronics/daisy/info.json b/keyboards/draytronics/daisy/info.json new file mode 100644 index 000000000..bb20b0c9b --- /dev/null +++ b/keyboards/draytronics/daisy/info.json | |||
@@ -0,0 +1,26 @@ | |||
1 | { | ||
2 | "keyboard_name": "Draytronics DAISY", | ||
3 | "url": "https://www.draytronics.co.uk/daisy", | ||
4 | "maintainer": "ghostseven", | ||
5 | "layout_aliases": { | ||
6 | "LAYOUT_daisy": "LAYOUT" | ||
7 | }, | ||
8 | "layouts": { | ||
9 | "LAYOUT": { | ||
10 | "layout": [ | ||
11 | {"label":"", "x":0, "y":0}, | ||
12 | {"label":"", "x":3, "y":0}, | ||
13 | |||
14 | {"label":"", "x":0, "y":1}, | ||
15 | {"label":"", "x":1, "y":1}, | ||
16 | {"label":"", "x":2, "y":1}, | ||
17 | {"label":"", "x":3, "y":1}, | ||
18 | |||
19 | {"label":"", "x":0, "y":2}, | ||
20 | {"label":"", "x":1, "y":2}, | ||
21 | {"label":"", "x":2, "y":2}, | ||
22 | {"label":"", "x":3, "y":2} | ||
23 | ] | ||
24 | } | ||
25 | } | ||
26 | } | ||
diff --git a/keyboards/draytronics/daisy/keymaps/default/keymap.c b/keyboards/draytronics/daisy/keymaps/default/keymap.c new file mode 100644 index 000000000..74cd02ecd --- /dev/null +++ b/keyboards/draytronics/daisy/keymaps/default/keymap.c | |||
@@ -0,0 +1,52 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include QMK_KEYBOARD_H | ||
20 | #define _BASE 0 // Base layer | ||
21 | #define _CODE 1 // Code layer | ||
22 | |||
23 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
24 | [_BASE] = LAYOUT( | ||
25 | KC_MUTE, KC_HOME, | ||
26 | MO(_CODE), KC_MPRV, KC_MNXT, KC_MPLY, | ||
27 | C(KC_LEFT), C(KC_UP), C(KC_DOWN), C(KC_RIGHT) | ||
28 | ), | ||
29 | [_CODE] = LAYOUT( | ||
30 | KC_MUTE, KC_END, | ||
31 | _______, RGB_MOD, RGB_VAI, RGB_TOG, | ||
32 | G(S(KC_5)), G(A(KC_ESC)), G(KC_F), RESET | ||
33 | ) | ||
34 | }; | ||
35 | |||
36 | bool encoder_update_user(uint8_t index, bool clockwise) { | ||
37 | if (index == 0) { | ||
38 | if (clockwise) { | ||
39 | tap_code(KC_VOLD); | ||
40 | } else { | ||
41 | tap_code(KC_VOLU); | ||
42 | } | ||
43 | } | ||
44 | else if (index == 1) { | ||
45 | if (clockwise) { | ||
46 | tap_code(KC_PGUP); | ||
47 | } else { | ||
48 | tap_code(KC_PGDN); | ||
49 | } | ||
50 | } | ||
51 | return true; | ||
52 | } | ||
diff --git a/keyboards/draytronics/daisy/readme.md b/keyboards/draytronics/daisy/readme.md new file mode 100644 index 000000000..6e8dd007a --- /dev/null +++ b/keyboards/draytronics/daisy/readme.md | |||
@@ -0,0 +1,20 @@ | |||
1 | # DAISY | ||
2 |  | ||
3 | |||
4 | An open source macro pad with rotary encoders and under glow, designed to be easily built with (mostly) through hole components. More info / kits / PCB designs available at [draytronics.co.uk/daisy](https://www.draytronics.co.uk/daisy) | ||
5 | |||
6 | * Keyboard Maintainer: [Blake Drayson](https://github.com/ghostseven) | ||
7 | * Hardware Supported: DAISY PCB / ATMega328P | ||
8 | * Hardware Availability: [draytronics.co.uk](https://draytronics.co.uk) | ||
9 | |||
10 | Make example for this keyboard (after setting up your build environment): | ||
11 | |||
12 | make draytronics/daisy:default | ||
13 | |||
14 | Flashing example for this keyboard: | ||
15 | |||
16 | make draytronics/daisy:default:flash | ||
17 | |||
18 | 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). | ||
19 | |||
20 | VIA design config file avaliable [here](https://www.draytronics.co.uk/f_daisy/draytronics_daisy_via_config.json) | ||
diff --git a/keyboards/draytronics/daisy/rules.mk b/keyboards/draytronics/daisy/rules.mk new file mode 100644 index 000000000..7bf0a8666 --- /dev/null +++ b/keyboards/draytronics/daisy/rules.mk | |||
@@ -0,0 +1,19 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega328p | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = usbasploader | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
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 | NKRO_ENABLE = no # Enable N-Key Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
18 | AUDIO_ENABLE = no # Audio output | ||
19 | ENCODER_ENABLE = yes # Rotary encoder support | ||
diff --git a/keyboards/draytronics/elise/config.h b/keyboards/draytronics/elise/config.h new file mode 100644 index 000000000..f5fde6987 --- /dev/null +++ b/keyboards/draytronics/elise/config.h | |||
@@ -0,0 +1,70 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #include "config_common.h" | ||
22 | |||
23 | /* USB Device descriptor parameter */ | ||
24 | #define VENDOR_ID 0x4454 //DT for DrayTronics | ||
25 | #define PRODUCT_ID 0x454C //EL for Elise | ||
26 | #define DEVICE_VER 0x0100 //Version 1 | ||
27 | #define MANUFACTURER Draytronics | ||
28 | #define PRODUCT ELISE | ||
29 | |||
30 | /* key matrix size */ | ||
31 | #define MATRIX_ROWS 5 | ||
32 | #define MATRIX_COLS 15 | ||
33 | |||
34 | /* | ||
35 | * Keyboard Matrix Assignments | ||
36 | * | ||
37 | * Change this to how you wired your keyboard | ||
38 | * COLS: AVR pins used for columns, left to right | ||
39 | * ROWS: AVR pins used for rows, top to bottom | ||
40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
42 | * | ||
43 | */ | ||
44 | #define MATRIX_ROW_PINS { B2,B3, B1, F0, F1} | ||
45 | #define MATRIX_COL_PINS { F4, F5, F6, F7, C7, C6, B6, B5, B4, D7, D6, D4, D2, D3, D5} | ||
46 | #define UNUSED_PINS | ||
47 | |||
48 | /* COL2ROW, ROW2COL*/ | ||
49 | #define DIODE_DIRECTION COL2ROW | ||
50 | |||
51 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
52 | #define DEBOUNCE 5 | ||
53 | |||
54 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
55 | #define LOCKING_SUPPORT_ENABLE | ||
56 | /* Locking resynchronize hack */ | ||
57 | #define LOCKING_RESYNC_ENABLE | ||
58 | |||
59 | // ws2812 options | ||
60 | #define RGB_DI_PIN D1 // pin the DI on the ws2812 is hooked-up to | ||
61 | #ifdef RGB_DI_PIN | ||
62 | #define RGBLED_NUM 7 | ||
63 | #define RGBLIGHT_HUE_STEP 8 | ||
64 | #define RGBLIGHT_SAT_STEP 8 | ||
65 | #define RGBLIGHT_VAL_STEP 8 | ||
66 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
67 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
68 | /*== all animations enable ==*/ | ||
69 | #define RGBLIGHT_ANIMATIONS | ||
70 | #endif | ||
diff --git a/keyboards/draytronics/elise/elise.c b/keyboards/draytronics/elise/elise.c new file mode 100755 index 000000000..731202ab6 --- /dev/null +++ b/keyboards/draytronics/elise/elise.c | |||
@@ -0,0 +1,18 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | #include "elise.h" | ||
diff --git a/keyboards/draytronics/elise/elise.h b/keyboards/draytronics/elise/elise.h new file mode 100755 index 000000000..750d651a2 --- /dev/null +++ b/keyboards/draytronics/elise/elise.h | |||
@@ -0,0 +1,135 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #define _x_ KC_NO | ||
22 | |||
23 | #include "quantum.h" | ||
24 | |||
25 | #define LAYOUT_65_ansi( \ | ||
26 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
27 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
28 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
29 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
30 | K40, K41, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
31 | ) { \ | ||
32 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
33 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
34 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
35 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
36 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
37 | } | ||
38 | |||
39 | #define LAYOUT_65_ansi_rwkl( \ | ||
40 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
41 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
42 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
43 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
44 | K40, K41, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
45 | ) { \ | ||
46 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
47 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
48 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
49 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
50 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
51 | } | ||
52 | |||
53 | #define LAYOUT_65_ansi_lwkl( \ | ||
54 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
55 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
56 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
57 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
58 | K40, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
59 | ) { \ | ||
60 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
61 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
62 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
63 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
64 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
65 | } | ||
66 | |||
67 | #define LAYOUT_65_ansi_wkl( \ | ||
68 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
69 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
70 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
71 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
72 | K40, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
73 | ) { \ | ||
74 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
75 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
76 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
77 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
78 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
79 | } | ||
80 | |||
81 | #define LAYOUT_65_iso( \ | ||
82 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
83 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
84 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
85 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
86 | K40, K41, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
87 | ) { \ | ||
88 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
89 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
90 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
91 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
92 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
93 | } | ||
94 | |||
95 | #define LAYOUT_65_iso_rwkl( \ | ||
96 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
97 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
98 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
99 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
100 | K40, K41, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
101 | ) { \ | ||
102 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
103 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
104 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
105 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
106 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
107 | } | ||
108 | |||
109 | #define LAYOUT_65_iso_lwkl( \ | ||
110 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
111 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
112 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
113 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
114 | K40, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
115 | ) { \ | ||
116 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
117 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
118 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
119 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
120 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
121 | } | ||
122 | |||
123 | #define LAYOUT_65_iso_wkl( \ | ||
124 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
125 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
126 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
127 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
128 | K40, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
129 | ) { \ | ||
130 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
131 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
132 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
133 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
134 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
135 | } | ||
diff --git a/keyboards/draytronics/elise/info.json b/keyboards/draytronics/elise/info.json new file mode 100644 index 000000000..6393dbfab --- /dev/null +++ b/keyboards/draytronics/elise/info.json | |||
@@ -0,0 +1,619 @@ | |||
1 | { | ||
2 | "keyboard_name": "Draytronics ELISE", | ||
3 | "url": "https://www.draytronics.co.uk/elise", | ||
4 | "maintainer": "ghostseven", | ||
5 | "layout_aliases": { | ||
6 | "LAYOUT_65_ansi_right_lrg": "LAYOUT_65_ansi_rwkl", | ||
7 | "LAYOUT_65_ansi_left_lrg": "LAYOUT_65_ansi_lwkl", | ||
8 | "LAYOUT_65_ansi_lrg": "LAYOUT_65_ansi_wkl", | ||
9 | "LAYOUT_65_iso_right_lrg": "LAYOUT_65_iso_rwkl", | ||
10 | "LAYOUT_65_iso_left_lrg": "LAYOUT_65_iso_lwkl", | ||
11 | "LAYOUT_65_iso_lrg": "LAYOUT_65_iso_wkl" | ||
12 | }, | ||
13 | "layouts": { | ||
14 | "LAYOUT_65_ansi": { | ||
15 | "layout": [ | ||
16 | {"label":"Esc", "x":0, "y":0}, | ||
17 | {"label":"1", "x":1, "y":0}, | ||
18 | {"label":"2", "x":2, "y":0}, | ||
19 | {"label":"3", "x":3, "y":0}, | ||
20 | {"label":"4", "x":4, "y":0}, | ||
21 | {"label":"5", "x":5, "y":0}, | ||
22 | {"label":"6", "x":6, "y":0}, | ||
23 | {"label":"7", "x":7, "y":0}, | ||
24 | {"label":"8", "x":8, "y":0}, | ||
25 | {"label":"9", "x":9, "y":0}, | ||
26 | {"label":"10", "x":10, "y":0}, | ||
27 | {"label":"-", "x":11, "y":0}, | ||
28 | {"label":"=", "x":12, "y":0}, | ||
29 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
30 | {"label":"~", "x":15, "y":0}, | ||
31 | |||
32 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
33 | {"label":"Q", "x":1.5, "y":1}, | ||
34 | {"label":"W", "x":2.5, "y":1}, | ||
35 | {"label":"E", "x":3.5, "y":1}, | ||
36 | {"label":"R", "x":4.5, "y":1}, | ||
37 | {"label":"T", "x":5.5, "y":1}, | ||
38 | {"label":"Y", "x":6.5, "y":1}, | ||
39 | {"label":"U", "x":7.5, "y":1}, | ||
40 | {"label":"I", "x":8.5, "y":1}, | ||
41 | {"label":"O", "x":9.5, "y":1}, | ||
42 | {"label":"P", "x":10.5, "y":1}, | ||
43 | {"label":"[", "x":11.5, "y":1}, | ||
44 | {"label":"]", "x":12.5, "y":1}, | ||
45 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
46 | {"label":"Delete", "x":15, "y":1}, | ||
47 | |||
48 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
49 | {"label":"A", "x":1.75, "y":2}, | ||
50 | {"label":"S", "x":2.75, "y":2}, | ||
51 | {"label":"D", "x":3.75, "y":2}, | ||
52 | {"label":"F", "x":4.75, "y":2}, | ||
53 | {"label":"G", "x":5.75, "y":2}, | ||
54 | {"label":"H", "x":6.75, "y":2}, | ||
55 | {"label":"J", "x":7.75, "y":2}, | ||
56 | {"label":"K", "x":8.75, "y":2}, | ||
57 | {"label":"L", "x":9.75, "y":2}, | ||
58 | {"label":";", "x":10.75, "y":2}, | ||
59 | {"label":"'", "x":11.75, "y":2}, | ||
60 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
61 | {"label":"PgUp", "x":15, "y":2}, | ||
62 | |||
63 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
64 | {"label":"Z", "x":2.25, "y":3}, | ||
65 | {"label":"X", "x":3.25, "y":3}, | ||
66 | {"label":"C", "x":4.25, "y":3}, | ||
67 | {"label":"V", "x":5.25, "y":3}, | ||
68 | {"label":"B", "x":6.25, "y":3}, | ||
69 | {"label":"N", "x":7.25, "y":3}, | ||
70 | {"label":"M", "x":8.25, "y":3}, | ||
71 | {"label":",", "x":9.25, "y":3}, | ||
72 | {"label":".", "x":10.25, "y":3}, | ||
73 | {"label":"/", "x":11.25, "y":3}, | ||
74 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
75 | {"label":"\u2191", "x":14, "y":3}, | ||
76 | {"label":"PgDn", "x":15, "y":3}, | ||
77 | |||
78 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
79 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
80 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
81 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
82 | {"label":"Alt", "x":10, "y":4}, | ||
83 | {"label":"Fn", "x":11, "y":4}, | ||
84 | {"label":"Ctrl", "x":12, "y":4}, | ||
85 | {"label":"\u2190", "x":13, "y":4}, | ||
86 | {"label":"\u2193", "x":14, "y":4}, | ||
87 | {"label":"\u2192", "x":15, "y":4} | ||
88 | ] | ||
89 | }, | ||
90 | "LAYOUT_65_ansi_rwkl": { | ||
91 | "layout": [ | ||
92 | {"label":"Esc", "x":0, "y":0}, | ||
93 | {"label":"1", "x":1, "y":0}, | ||
94 | {"label":"2", "x":2, "y":0}, | ||
95 | {"label":"3", "x":3, "y":0}, | ||
96 | {"label":"4", "x":4, "y":0}, | ||
97 | {"label":"5", "x":5, "y":0}, | ||
98 | {"label":"6", "x":6, "y":0}, | ||
99 | {"label":"7", "x":7, "y":0}, | ||
100 | {"label":"8", "x":8, "y":0}, | ||
101 | {"label":"9", "x":9, "y":0}, | ||
102 | {"label":"10", "x":10, "y":0}, | ||
103 | {"label":"-", "x":11, "y":0}, | ||
104 | {"label":"=", "x":12, "y":0}, | ||
105 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
106 | {"label":"~", "x":15, "y":0}, | ||
107 | |||
108 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
109 | {"label":"Q", "x":1.5, "y":1}, | ||
110 | {"label":"W", "x":2.5, "y":1}, | ||
111 | {"label":"E", "x":3.5, "y":1}, | ||
112 | {"label":"R", "x":4.5, "y":1}, | ||
113 | {"label":"T", "x":5.5, "y":1}, | ||
114 | {"label":"Y", "x":6.5, "y":1}, | ||
115 | {"label":"U", "x":7.5, "y":1}, | ||
116 | {"label":"I", "x":8.5, "y":1}, | ||
117 | {"label":"O", "x":9.5, "y":1}, | ||
118 | {"label":"P", "x":10.5, "y":1}, | ||
119 | {"label":"[", "x":11.5, "y":1}, | ||
120 | {"label":"]", "x":12.5, "y":1}, | ||
121 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
122 | {"label":"Delete", "x":15, "y":1}, | ||
123 | |||
124 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
125 | {"label":"A", "x":1.75, "y":2}, | ||
126 | {"label":"S", "x":2.75, "y":2}, | ||
127 | {"label":"D", "x":3.75, "y":2}, | ||
128 | {"label":"F", "x":4.75, "y":2}, | ||
129 | {"label":"G", "x":5.75, "y":2}, | ||
130 | {"label":"H", "x":6.75, "y":2}, | ||
131 | {"label":"J", "x":7.75, "y":2}, | ||
132 | {"label":"K", "x":8.75, "y":2}, | ||
133 | {"label":"L", "x":9.75, "y":2}, | ||
134 | {"label":";", "x":10.75, "y":2}, | ||
135 | {"label":"'", "x":11.75, "y":2}, | ||
136 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
137 | {"label":"PgUp", "x":15, "y":2}, | ||
138 | |||
139 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
140 | {"label":"Z", "x":2.25, "y":3}, | ||
141 | {"label":"X", "x":3.25, "y":3}, | ||
142 | {"label":"C", "x":4.25, "y":3}, | ||
143 | {"label":"V", "x":5.25, "y":3}, | ||
144 | {"label":"B", "x":6.25, "y":3}, | ||
145 | {"label":"N", "x":7.25, "y":3}, | ||
146 | {"label":"M", "x":8.25, "y":3}, | ||
147 | {"label":",", "x":9.25, "y":3}, | ||
148 | {"label":".", "x":10.25, "y":3}, | ||
149 | {"label":"/", "x":11.25, "y":3}, | ||
150 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
151 | {"label":"\u2191", "x":14, "y":3}, | ||
152 | {"label":"PgDn", "x":15, "y":3}, | ||
153 | |||
154 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
155 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
156 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
157 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
158 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
159 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
160 | {"label":"\u2190", "x":13, "y":4}, | ||
161 | {"label":"\u2193", "x":14, "y":4}, | ||
162 | {"label":"\u2192", "x":15, "y":4} | ||
163 | ] | ||
164 | }, | ||
165 | "LAYOUT_65_ansi_lwkl": { | ||
166 | "layout": [ | ||
167 | {"label":"Esc", "x":0, "y":0}, | ||
168 | {"label":"1", "x":1, "y":0}, | ||
169 | {"label":"2", "x":2, "y":0}, | ||
170 | {"label":"3", "x":3, "y":0}, | ||
171 | {"label":"4", "x":4, "y":0}, | ||
172 | {"label":"5", "x":5, "y":0}, | ||
173 | {"label":"6", "x":6, "y":0}, | ||
174 | {"label":"7", "x":7, "y":0}, | ||
175 | {"label":"8", "x":8, "y":0}, | ||
176 | {"label":"9", "x":9, "y":0}, | ||
177 | {"label":"10", "x":10, "y":0}, | ||
178 | {"label":"-", "x":11, "y":0}, | ||
179 | {"label":"=", "x":12, "y":0}, | ||
180 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
181 | {"label":"~", "x":15, "y":0}, | ||
182 | |||
183 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
184 | {"label":"Q", "x":1.5, "y":1}, | ||
185 | {"label":"W", "x":2.5, "y":1}, | ||
186 | {"label":"E", "x":3.5, "y":1}, | ||
187 | {"label":"R", "x":4.5, "y":1}, | ||
188 | {"label":"T", "x":5.5, "y":1}, | ||
189 | {"label":"Y", "x":6.5, "y":1}, | ||
190 | {"label":"U", "x":7.5, "y":1}, | ||
191 | {"label":"I", "x":8.5, "y":1}, | ||
192 | {"label":"O", "x":9.5, "y":1}, | ||
193 | {"label":"P", "x":10.5, "y":1}, | ||
194 | {"label":"[", "x":11.5, "y":1}, | ||
195 | {"label":"]", "x":12.5, "y":1}, | ||
196 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
197 | {"label":"Delete", "x":15, "y":1}, | ||
198 | |||
199 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
200 | {"label":"A", "x":1.75, "y":2}, | ||
201 | {"label":"S", "x":2.75, "y":2}, | ||
202 | {"label":"D", "x":3.75, "y":2}, | ||
203 | {"label":"F", "x":4.75, "y":2}, | ||
204 | {"label":"G", "x":5.75, "y":2}, | ||
205 | {"label":"H", "x":6.75, "y":2}, | ||
206 | {"label":"J", "x":7.75, "y":2}, | ||
207 | {"label":"K", "x":8.75, "y":2}, | ||
208 | {"label":"L", "x":9.75, "y":2}, | ||
209 | {"label":";", "x":10.75, "y":2}, | ||
210 | {"label":"'", "x":11.75, "y":2}, | ||
211 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
212 | {"label":"PgUp", "x":15, "y":2}, | ||
213 | |||
214 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
215 | {"label":"Z", "x":2.25, "y":3}, | ||
216 | {"label":"X", "x":3.25, "y":3}, | ||
217 | {"label":"C", "x":4.25, "y":3}, | ||
218 | {"label":"V", "x":5.25, "y":3}, | ||
219 | {"label":"B", "x":6.25, "y":3}, | ||
220 | {"label":"N", "x":7.25, "y":3}, | ||
221 | {"label":"M", "x":8.25, "y":3}, | ||
222 | {"label":",", "x":9.25, "y":3}, | ||
223 | {"label":".", "x":10.25, "y":3}, | ||
224 | {"label":"/", "x":11.25, "y":3}, | ||
225 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
226 | {"label":"\u2191", "x":14, "y":3}, | ||
227 | {"label":"PgDn", "x":15, "y":3}, | ||
228 | |||
229 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
230 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
231 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
232 | {"label":"Alt", "x":10, "y":4}, | ||
233 | {"label":"Fn", "x":11, "y":4}, | ||
234 | {"label":"Ctrl", "x":12, "y":4}, | ||
235 | {"label":"\u2190", "x":13, "y":4}, | ||
236 | {"label":"\u2193", "x":14, "y":4}, | ||
237 | {"label":"\u2192", "x":15, "y":4} | ||
238 | ] | ||
239 | }, | ||
240 | "LAYOUT_65_ansi_wkl": { | ||
241 | "layout": [ | ||
242 | {"label":"Esc", "x":0, "y":0}, | ||
243 | {"label":"1", "x":1, "y":0}, | ||
244 | {"label":"2", "x":2, "y":0}, | ||
245 | {"label":"3", "x":3, "y":0}, | ||
246 | {"label":"4", "x":4, "y":0}, | ||
247 | {"label":"5", "x":5, "y":0}, | ||
248 | {"label":"6", "x":6, "y":0}, | ||
249 | {"label":"7", "x":7, "y":0}, | ||
250 | {"label":"8", "x":8, "y":0}, | ||
251 | {"label":"9", "x":9, "y":0}, | ||
252 | {"label":"10", "x":10, "y":0}, | ||
253 | {"label":"-", "x":11, "y":0}, | ||
254 | {"label":"=", "x":12, "y":0}, | ||
255 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
256 | {"label":"~", "x":15, "y":0}, | ||
257 | |||
258 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
259 | {"label":"Q", "x":1.5, "y":1}, | ||
260 | {"label":"W", "x":2.5, "y":1}, | ||
261 | {"label":"E", "x":3.5, "y":1}, | ||
262 | {"label":"R", "x":4.5, "y":1}, | ||
263 | {"label":"T", "x":5.5, "y":1}, | ||
264 | {"label":"Y", "x":6.5, "y":1}, | ||
265 | {"label":"U", "x":7.5, "y":1}, | ||
266 | {"label":"I", "x":8.5, "y":1}, | ||
267 | {"label":"O", "x":9.5, "y":1}, | ||
268 | {"label":"P", "x":10.5, "y":1}, | ||
269 | {"label":"[", "x":11.5, "y":1}, | ||
270 | {"label":"]", "x":12.5, "y":1}, | ||
271 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
272 | {"label":"Delete", "x":15, "y":1}, | ||
273 | |||
274 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
275 | {"label":"A", "x":1.75, "y":2}, | ||
276 | {"label":"S", "x":2.75, "y":2}, | ||
277 | {"label":"D", "x":3.75, "y":2}, | ||
278 | {"label":"F", "x":4.75, "y":2}, | ||
279 | {"label":"G", "x":5.75, "y":2}, | ||
280 | {"label":"H", "x":6.75, "y":2}, | ||
281 | {"label":"J", "x":7.75, "y":2}, | ||
282 | {"label":"K", "x":8.75, "y":2}, | ||
283 | {"label":"L", "x":9.75, "y":2}, | ||
284 | {"label":";", "x":10.75, "y":2}, | ||
285 | {"label":"'", "x":11.75, "y":2}, | ||
286 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
287 | {"label":"PgUp", "x":15, "y":2}, | ||
288 | |||
289 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
290 | {"label":"Z", "x":2.25, "y":3}, | ||
291 | {"label":"X", "x":3.25, "y":3}, | ||
292 | {"label":"C", "x":4.25, "y":3}, | ||
293 | {"label":"V", "x":5.25, "y":3}, | ||
294 | {"label":"B", "x":6.25, "y":3}, | ||
295 | {"label":"N", "x":7.25, "y":3}, | ||
296 | {"label":"M", "x":8.25, "y":3}, | ||
297 | {"label":",", "x":9.25, "y":3}, | ||
298 | {"label":".", "x":10.25, "y":3}, | ||
299 | {"label":"/", "x":11.25, "y":3}, | ||
300 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
301 | {"label":"\u2191", "x":14, "y":3}, | ||
302 | {"label":"PgDn", "x":15, "y":3}, | ||
303 | |||
304 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
305 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
306 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
307 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
308 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
309 | {"label":"\u2190", "x":13, "y":4}, | ||
310 | {"label":"\u2193", "x":14, "y":4}, | ||
311 | {"label":"\u2192", "x":15, "y":4} | ||
312 | ] | ||
313 | }, | ||
314 | "LAYOUT_65_iso": { | ||
315 | "layout": [ | ||
316 | {"label":"Esc", "x":0, "y":0}, | ||
317 | {"label":"1", "x":1, "y":0}, | ||
318 | {"label":"2", "x":2, "y":0}, | ||
319 | {"label":"3", "x":3, "y":0}, | ||
320 | {"label":"4", "x":4, "y":0}, | ||
321 | {"label":"5", "x":5, "y":0}, | ||
322 | {"label":"6", "x":6, "y":0}, | ||
323 | {"label":"7", "x":7, "y":0}, | ||
324 | {"label":"8", "x":8, "y":0}, | ||
325 | {"label":"9", "x":9, "y":0}, | ||
326 | {"label":"10", "x":10, "y":0}, | ||
327 | {"label":"-", "x":11, "y":0}, | ||
328 | {"label":"=", "x":12, "y":0}, | ||
329 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
330 | {"label":"~", "x":15, "y":0}, | ||
331 | |||
332 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
333 | {"label":"Q", "x":1.5, "y":1}, | ||
334 | {"label":"W", "x":2.5, "y":1}, | ||
335 | {"label":"E", "x":3.5, "y":1}, | ||
336 | {"label":"R", "x":4.5, "y":1}, | ||
337 | {"label":"T", "x":5.5, "y":1}, | ||
338 | {"label":"Y", "x":6.5, "y":1}, | ||
339 | {"label":"U", "x":7.5, "y":1}, | ||
340 | {"label":"I", "x":8.5, "y":1}, | ||
341 | {"label":"O", "x":9.5, "y":1}, | ||
342 | {"label":"P", "x":10.5, "y":1}, | ||
343 | {"label":"[", "x":11.5, "y":1}, | ||
344 | {"label":"]", "x":12.5, "y":1}, | ||
345 | {"label":"Delete", "x":15, "y":1}, | ||
346 | |||
347 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
348 | {"label":"A", "x":1.75, "y":2}, | ||
349 | {"label":"S", "x":2.75, "y":2}, | ||
350 | {"label":"D", "x":3.75, "y":2}, | ||
351 | {"label":"F", "x":4.75, "y":2}, | ||
352 | {"label":"G", "x":5.75, "y":2}, | ||
353 | {"label":"H", "x":6.75, "y":2}, | ||
354 | {"label":"J", "x":7.75, "y":2}, | ||
355 | {"label":"K", "x":8.75, "y":2}, | ||
356 | {"label":"L", "x":9.75, "y":2}, | ||
357 | {"label":";", "x":10.75, "y":2}, | ||
358 | {"label":"'", "x":11.75, "y":2}, | ||
359 | {"label":"#", "x":12.75, "y":2}, | ||
360 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
361 | {"label":"PgUp", "x":15, "y":2}, | ||
362 | |||
363 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
364 | {"label":"\\", "x":1.25, "y":3}, | ||
365 | {"label":"Z", "x":2.25, "y":3}, | ||
366 | {"label":"X", "x":3.25, "y":3}, | ||
367 | {"label":"C", "x":4.25, "y":3}, | ||
368 | {"label":"V", "x":5.25, "y":3}, | ||
369 | {"label":"B", "x":6.25, "y":3}, | ||
370 | {"label":"N", "x":7.25, "y":3}, | ||
371 | {"label":"M", "x":8.25, "y":3}, | ||
372 | {"label":",", "x":9.25, "y":3}, | ||
373 | {"label":".", "x":10.25, "y":3}, | ||
374 | {"label":"/", "x":11.25, "y":3}, | ||
375 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
376 | {"label":"\u2191", "x":14, "y":3}, | ||
377 | {"label":"PgDn", "x":15, "y":3}, | ||
378 | |||
379 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
380 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
381 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
382 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
383 | {"label":"Alt", "x":10, "y":4}, | ||
384 | {"label":"Fn", "x":11, "y":4}, | ||
385 | {"label":"Ctrl", "x":12, "y":4}, | ||
386 | {"label":"\u2190", "x":13, "y":4}, | ||
387 | {"label":"\u2193", "x":14, "y":4}, | ||
388 | {"label":"\u2192", "x":15, "y":4} | ||
389 | ] | ||
390 | }, | ||
391 | "LAYOUT_65_iso_rwkl": { | ||
392 | "layout": [ | ||
393 | {"label":"Esc", "x":0, "y":0}, | ||
394 | {"label":"1", "x":1, "y":0}, | ||
395 | {"label":"2", "x":2, "y":0}, | ||
396 | {"label":"3", "x":3, "y":0}, | ||
397 | {"label":"4", "x":4, "y":0}, | ||
398 | {"label":"5", "x":5, "y":0}, | ||
399 | {"label":"6", "x":6, "y":0}, | ||
400 | {"label":"7", "x":7, "y":0}, | ||
401 | {"label":"8", "x":8, "y":0}, | ||
402 | {"label":"9", "x":9, "y":0}, | ||
403 | {"label":"10", "x":10, "y":0}, | ||
404 | {"label":"-", "x":11, "y":0}, | ||
405 | {"label":"=", "x":12, "y":0}, | ||
406 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
407 | {"label":"~", "x":15, "y":0}, | ||
408 | |||
409 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
410 | {"label":"Q", "x":1.5, "y":1}, | ||
411 | {"label":"W", "x":2.5, "y":1}, | ||
412 | {"label":"E", "x":3.5, "y":1}, | ||
413 | {"label":"R", "x":4.5, "y":1}, | ||
414 | {"label":"T", "x":5.5, "y":1}, | ||
415 | {"label":"Y", "x":6.5, "y":1}, | ||
416 | {"label":"U", "x":7.5, "y":1}, | ||
417 | {"label":"I", "x":8.5, "y":1}, | ||
418 | {"label":"O", "x":9.5, "y":1}, | ||
419 | {"label":"P", "x":10.5, "y":1}, | ||
420 | {"label":"[", "x":11.5, "y":1}, | ||
421 | {"label":"]", "x":12.5, "y":1}, | ||
422 | {"label":"Delete", "x":15, "y":1}, | ||
423 | |||
424 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
425 | {"label":"A", "x":1.75, "y":2}, | ||
426 | {"label":"S", "x":2.75, "y":2}, | ||
427 | {"label":"D", "x":3.75, "y":2}, | ||
428 | {"label":"F", "x":4.75, "y":2}, | ||
429 | {"label":"G", "x":5.75, "y":2}, | ||
430 | {"label":"H", "x":6.75, "y":2}, | ||
431 | {"label":"J", "x":7.75, "y":2}, | ||
432 | {"label":"K", "x":8.75, "y":2}, | ||
433 | {"label":"L", "x":9.75, "y":2}, | ||
434 | {"label":";", "x":10.75, "y":2}, | ||
435 | {"label":"'", "x":11.75, "y":2}, | ||
436 | {"label":"#", "x":12.75, "y":2}, | ||
437 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
438 | {"label":"PgUp", "x":15, "y":2}, | ||
439 | |||
440 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
441 | {"label":"\\", "x":1.25, "y":3}, | ||
442 | {"label":"Z", "x":2.25, "y":3}, | ||
443 | {"label":"X", "x":3.25, "y":3}, | ||
444 | {"label":"C", "x":4.25, "y":3}, | ||
445 | {"label":"V", "x":5.25, "y":3}, | ||
446 | {"label":"B", "x":6.25, "y":3}, | ||
447 | {"label":"N", "x":7.25, "y":3}, | ||
448 | {"label":"M", "x":8.25, "y":3}, | ||
449 | {"label":",", "x":9.25, "y":3}, | ||
450 | {"label":".", "x":10.25, "y":3}, | ||
451 | {"label":"/", "x":11.25, "y":3}, | ||
452 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
453 | {"label":"\u2191", "x":14, "y":3}, | ||
454 | {"label":"PgDn", "x":15, "y":3}, | ||
455 | |||
456 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
457 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
458 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
459 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
460 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
461 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
462 | {"label":"\u2190", "x":13, "y":4}, | ||
463 | {"label":"\u2193", "x":14, "y":4}, | ||
464 | {"label":"\u2192", "x":15, "y":4} | ||
465 | ] | ||
466 | }, | ||
467 | "LAYOUT_65_iso_lwkl": { | ||
468 | "layout": [ | ||
469 | {"label":"Esc", "x":0, "y":0}, | ||
470 | {"label":"1", "x":1, "y":0}, | ||
471 | {"label":"2", "x":2, "y":0}, | ||
472 | {"label":"3", "x":3, "y":0}, | ||
473 | {"label":"4", "x":4, "y":0}, | ||
474 | {"label":"5", "x":5, "y":0}, | ||
475 | {"label":"6", "x":6, "y":0}, | ||
476 | {"label":"7", "x":7, "y":0}, | ||
477 | {"label":"8", "x":8, "y":0}, | ||
478 | {"label":"9", "x":9, "y":0}, | ||
479 | {"label":"10", "x":10, "y":0}, | ||
480 | {"label":"-", "x":11, "y":0}, | ||
481 | {"label":"=", "x":12, "y":0}, | ||
482 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
483 | {"label":"~", "x":15, "y":0}, | ||
484 | |||
485 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
486 | {"label":"Q", "x":1.5, "y":1}, | ||
487 | {"label":"W", "x":2.5, "y":1}, | ||
488 | {"label":"E", "x":3.5, "y":1}, | ||
489 | {"label":"R", "x":4.5, "y":1}, | ||
490 | {"label":"T", "x":5.5, "y":1}, | ||
491 | {"label":"Y", "x":6.5, "y":1}, | ||
492 | {"label":"U", "x":7.5, "y":1}, | ||
493 | {"label":"I", "x":8.5, "y":1}, | ||
494 | {"label":"O", "x":9.5, "y":1}, | ||
495 | {"label":"P", "x":10.5, "y":1}, | ||
496 | {"label":"[", "x":11.5, "y":1}, | ||
497 | {"label":"]", "x":12.5, "y":1}, | ||
498 | {"label":"Delete", "x":15, "y":1}, | ||
499 | |||
500 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
501 | {"label":"A", "x":1.75, "y":2}, | ||
502 | {"label":"S", "x":2.75, "y":2}, | ||
503 | {"label":"D", "x":3.75, "y":2}, | ||
504 | {"label":"F", "x":4.75, "y":2}, | ||
505 | {"label":"G", "x":5.75, "y":2}, | ||
506 | {"label":"H", "x":6.75, "y":2}, | ||
507 | {"label":"J", "x":7.75, "y":2}, | ||
508 | {"label":"K", "x":8.75, "y":2}, | ||
509 | {"label":"L", "x":9.75, "y":2}, | ||
510 | {"label":";", "x":10.75, "y":2}, | ||
511 | {"label":"'", "x":11.75, "y":2}, | ||
512 | {"label":"#", "x":12.75, "y":2}, | ||
513 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
514 | {"label":"PgUp", "x":15, "y":2}, | ||
515 | |||
516 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
517 | {"label":"\\", "x":1.25, "y":3}, | ||
518 | {"label":"Z", "x":2.25, "y":3}, | ||
519 | {"label":"X", "x":3.25, "y":3}, | ||
520 | {"label":"C", "x":4.25, "y":3}, | ||
521 | {"label":"V", "x":5.25, "y":3}, | ||
522 | {"label":"B", "x":6.25, "y":3}, | ||
523 | {"label":"N", "x":7.25, "y":3}, | ||
524 | {"label":"M", "x":8.25, "y":3}, | ||
525 | {"label":",", "x":9.25, "y":3}, | ||
526 | {"label":".", "x":10.25, "y":3}, | ||
527 | {"label":"/", "x":11.25, "y":3}, | ||
528 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
529 | {"label":"\u2191", "x":14, "y":3}, | ||
530 | {"label":"PgDn", "x":15, "y":3}, | ||
531 | |||
532 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
533 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
534 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
535 | {"label":"Alt", "x":10, "y":4}, | ||
536 | {"label":"Fn", "x":11, "y":4}, | ||
537 | {"label":"Ctrl", "x":12, "y":4}, | ||
538 | {"label":"\u2190", "x":13, "y":4}, | ||
539 | {"label":"\u2193", "x":14, "y":4}, | ||
540 | {"label":"\u2192", "x":15, "y":4} | ||
541 | ] | ||
542 | }, | ||
543 | "LAYOUT_65_iso_wkl": { | ||
544 | "layout": [ | ||
545 | {"label":"Esc", "x":0, "y":0}, | ||
546 | {"label":"1", "x":1, "y":0}, | ||
547 | {"label":"2", "x":2, "y":0}, | ||
548 | {"label":"3", "x":3, "y":0}, | ||
549 | {"label":"4", "x":4, "y":0}, | ||
550 | {"label":"5", "x":5, "y":0}, | ||
551 | {"label":"6", "x":6, "y":0}, | ||
552 | {"label":"7", "x":7, "y":0}, | ||
553 | {"label":"8", "x":8, "y":0}, | ||
554 | {"label":"9", "x":9, "y":0}, | ||
555 | {"label":"10", "x":10, "y":0}, | ||
556 | {"label":"-", "x":11, "y":0}, | ||
557 | {"label":"=", "x":12, "y":0}, | ||
558 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
559 | {"label":"~", "x":15, "y":0}, | ||
560 | |||
561 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
562 | {"label":"Q", "x":1.5, "y":1}, | ||
563 | {"label":"W", "x":2.5, "y":1}, | ||
564 | {"label":"E", "x":3.5, "y":1}, | ||
565 | {"label":"R", "x":4.5, "y":1}, | ||
566 | {"label":"T", "x":5.5, "y":1}, | ||
567 | {"label":"Y", "x":6.5, "y":1}, | ||
568 | {"label":"U", "x":7.5, "y":1}, | ||
569 | {"label":"I", "x":8.5, "y":1}, | ||
570 | {"label":"O", "x":9.5, "y":1}, | ||
571 | {"label":"P", "x":10.5, "y":1}, | ||
572 | {"label":"[", "x":11.5, "y":1}, | ||
573 | {"label":"]", "x":12.5, "y":1}, | ||
574 | {"label":"Delete", "x":15, "y":1}, | ||
575 | |||
576 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
577 | {"label":"A", "x":1.75, "y":2}, | ||
578 | {"label":"S", "x":2.75, "y":2}, | ||
579 | {"label":"D", "x":3.75, "y":2}, | ||
580 | {"label":"F", "x":4.75, "y":2}, | ||
581 | {"label":"G", "x":5.75, "y":2}, | ||
582 | {"label":"H", "x":6.75, "y":2}, | ||
583 | {"label":"J", "x":7.75, "y":2}, | ||
584 | {"label":"K", "x":8.75, "y":2}, | ||
585 | {"label":"L", "x":9.75, "y":2}, | ||
586 | {"label":";", "x":10.75, "y":2}, | ||
587 | {"label":"'", "x":11.75, "y":2}, | ||
588 | {"label":"#", "x":12.75, "y":2}, | ||
589 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
590 | {"label":"PgUp", "x":15, "y":2}, | ||
591 | |||
592 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
593 | {"label":"\\", "x":1.25, "y":3}, | ||
594 | {"label":"Z", "x":2.25, "y":3}, | ||
595 | {"label":"X", "x":3.25, "y":3}, | ||
596 | {"label":"C", "x":4.25, "y":3}, | ||
597 | {"label":"V", "x":5.25, "y":3}, | ||
598 | {"label":"B", "x":6.25, "y":3}, | ||
599 | {"label":"N", "x":7.25, "y":3}, | ||
600 | {"label":"M", "x":8.25, "y":3}, | ||
601 | {"label":",", "x":9.25, "y":3}, | ||
602 | {"label":".", "x":10.25, "y":3}, | ||
603 | {"label":"/", "x":11.25, "y":3}, | ||
604 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
605 | {"label":"\u2191", "x":14, "y":3}, | ||
606 | {"label":"PgDn", "x":15, "y":3}, | ||
607 | |||
608 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
609 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
610 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
611 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
612 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
613 | {"label":"\u2190", "x":13, "y":4}, | ||
614 | {"label":"\u2193", "x":14, "y":4}, | ||
615 | {"label":"\u2192", "x":15, "y":4} | ||
616 | ] | ||
617 | } | ||
618 | } | ||
619 | } | ||
diff --git a/keyboards/draytronics/elise/keymaps/blake_iso/keymap.c b/keyboards/draytronics/elise/keymaps/blake_iso/keymap.c new file mode 100644 index 000000000..65e0629e1 --- /dev/null +++ b/keyboards/draytronics/elise/keymaps/blake_iso/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include QMK_KEYBOARD_H | ||
20 | |||
21 | enum custom_layers { | ||
22 | _BL, | ||
23 | _FL, | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | /* Keymap _BL: (Base Layer) Default Layer | ||
28 | * ,----------------------------------------------------------------. | ||
29 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Home| | ||
30 | * |----------------------------------------------------------------| | ||
31 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| |PgUp| | ||
32 | * |------------------------------------------------------- -----| | ||
33 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '| #|Entr|PgDn| | ||
34 | * |----------------------------------------------------------------| | ||
35 | * |Shift| \ | Z| X| C| V| B| N| M| ,| .| /|RShif| ↑ |End | | ||
36 | * |----------------------------------------------------------------| | ||
37 | * |Ctrl|Win |Alt | Space |RAlt|RCtrl|Fn| ← | ↓ | → | | ||
38 | * `----------------------------------------------------------------' | ||
39 | */ | ||
40 | [_BL] = LAYOUT_65_iso( | ||
41 | 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_HOME, | ||
42 | 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_PGUP, | ||
43 | 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_NUHS, KC_ENT, KC_PGDN, | ||
44 | KC_LSFT, KC_NUBS, 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_END, | ||
45 | KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RALT, KC_RCTL, MO(_FL), KC_LEFT, KC_DOWN, KC_RGHT | ||
46 | ), | ||
47 | |||
48 | /* Keymap _FL1: Function Layer 1 | ||
49 | * ,----------------------------------------------------------------. | ||
50 | * |~ `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| Delete| Ins| | ||
51 | * |----------------------------------------------------------------| | ||
52 | * |RESET| | ↑ | | | | | | | | | | | | | | ||
53 | * |------------------------------------------------------- -----| | ||
54 | * | | ← | ↓ | → | | | | | | | | | | | | | ||
55 | * |----------------------------------------------------------------| | ||
56 | * |HUI |SAI|VAI |RGBMOD| | | | | | | | |Play|V+|Mut| | ||
57 | * |----------------------------------------------------------------| | ||
58 | * |HUD |SAD |VAD | RGB_Tog | | | | <M | V-| M> | | ||
59 | * `----------------------------------------------------------------' | ||
60 | */ | ||
61 | [_FL] = LAYOUT_65_iso( | ||
62 | KC_GRV, 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, KC_INS, | ||
63 | RESET, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
65 | RGB_HUI, RGB_SAI, RGB_VAI, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLU, KC_MUTE, | ||
66 | RGB_HUD, RGB_SAD, RGB_VAD, RGB_TOG, _______, _______, KC_TRNS, KC_MPRV, KC_VOLD, KC_MNXT | ||
67 | ) | ||
68 | }; | ||
diff --git a/keyboards/draytronics/elise/keymaps/default/keymap.c b/keyboards/draytronics/elise/keymaps/default/keymap.c new file mode 100644 index 000000000..4208da13b --- /dev/null +++ b/keyboards/draytronics/elise/keymaps/default/keymap.c | |||
@@ -0,0 +1,67 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | #include QMK_KEYBOARD_H | ||
19 | |||
20 | enum custom_layers { | ||
21 | _BL, | ||
22 | _FL, | ||
23 | }; | ||
24 | |||
25 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
26 | /* Keymap _BL: (Base Layer) Default Layer | ||
27 | * ,----------------------------------------------------------------. | ||
28 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Home| | ||
29 | * |----------------------------------------------------------------| | ||
30 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |PgUp| | ||
31 | * |----------------------------------------------------------------| | ||
32 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return |PgDn| | ||
33 | * |----------------------------------------------------------------| | ||
34 | * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |End | | ||
35 | * |----------------------------------------------------------------| | ||
36 | * |Ctrl|Win |Alt | Space |RAlt|FN|RCtrl| ← | ↓ | → | | ||
37 | * `----------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BL] = LAYOUT_65_ansi( | ||
40 | 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_HOME, | ||
41 | 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_PGUP, | ||
42 | 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_PGDN, | ||
43 | 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_END, | ||
44 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
45 | ), | ||
46 | |||
47 | /* Keymap _FL: Function Layer | ||
48 | * ,----------------------------------------------------------------. | ||
49 | * | ~ | F1|F2 |F3 |F4 |F5 |F6 |F7 |F8 |F9 |F10|F11|F12|Del |INS | | ||
50 | * |----------------------------------------------------------------| | ||
51 | * |RESET| | ↑ | | | | | | | | | | | | | | ||
52 | * |------------------------------------------------------- -----| | ||
53 | * | | ← | ↓ | → | | | | | | | | | | | | | ||
54 | * |----------------------------------------------------------------| | ||
55 | * |HUI |SAI|VAI|RGBMOD| | | | | | | |Play |V+ |Mut | | ||
56 | * |----------------------------------------------------------------| | ||
57 | * |HUD |SAD |VAD | RGB_Tog | | | | <M|V- |M> | | ||
58 | * `----------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FL] = LAYOUT_65_ansi( | ||
61 | KC_GRV, 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, KC_INS, | ||
62 | RESET, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
63 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | RGB_HUI, RGB_SAI, RGB_VAI, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLU, KC_MUTE, | ||
65 | RGB_HUD, RGB_SAD, RGB_VAD, RGB_TOG, _______, KC_TRNS, _______, KC_MPRV, KC_VOLD, KC_MNXT | ||
66 | ), | ||
67 | }; | ||
diff --git a/keyboards/draytronics/elise/keymaps/default_iso/keymap.c b/keyboards/draytronics/elise/keymaps/default_iso/keymap.c new file mode 100644 index 000000000..a51272a35 --- /dev/null +++ b/keyboards/draytronics/elise/keymaps/default_iso/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include QMK_KEYBOARD_H | ||
20 | |||
21 | enum custom_layers { | ||
22 | _BL, | ||
23 | _FL, | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | /* Keymap _BL: (Base Layer) Default Layer | ||
28 | * ,----------------------------------------------------------------. | ||
29 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Home| | ||
30 | * |----------------------------------------------------------------| | ||
31 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| |PgUp| | ||
32 | * |------------------------------------------------------- -----| | ||
33 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '| #|Entr|PgDn| | ||
34 | * |----------------------------------------------------------------| | ||
35 | * |Shift| \ | Z| X| C| V| B| N| M| ,| .| /|RShif| ↑ |End | | ||
36 | * |----------------------------------------------------------------| | ||
37 | * |Ctrl|Win |Alt | Space |RAlt|RCtrl|Fn| ← | ↓ | → | | ||
38 | * `----------------------------------------------------------------' | ||
39 | */ | ||
40 | [_BL] = LAYOUT_65_iso( | ||
41 | 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_HOME, | ||
42 | 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_PGUP, | ||
43 | 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_NUHS, KC_ENT, KC_PGDN, | ||
44 | KC_LSFT, KC_NUBS, 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_END, | ||
45 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, MO(_FL), KC_LEFT, KC_DOWN, KC_RGHT | ||
46 | ), | ||
47 | |||
48 | /* Keymap _FL1: Function Layer 1 | ||
49 | * ,----------------------------------------------------------------. | ||
50 | * |~ `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| Delete| Ins| | ||
51 | * |----------------------------------------------------------------| | ||
52 | * |RESET| | ↑ | | | | | | | | | | | | | | ||
53 | * |------------------------------------------------------- -----| | ||
54 | * | | ← | ↓ | → | | | | | | | | | | | | | ||
55 | * |----------------------------------------------------------------| | ||
56 | * |HUI |SAI|VAI |RGBMOD| | | | | | | | |Play|V+|Mut| | ||
57 | * |----------------------------------------------------------------| | ||
58 | * |HUD |SAD |VAD | RGB_Tog | | | | <M | V-| M> | | ||
59 | * `----------------------------------------------------------------' | ||
60 | */ | ||
61 | [_FL] = LAYOUT_65_iso( | ||
62 | KC_GRV, 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, KC_INS, | ||
63 | RESET, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
65 | RGB_HUI, RGB_SAI, RGB_VAI, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLU, KC_MUTE, | ||
66 | RGB_HUD, RGB_SAD, RGB_VAD, RGB_TOG, _______, _______, KC_TRNS, KC_MPRV, KC_VOLD, KC_MNXT | ||
67 | ) | ||
68 | }; | ||
diff --git a/keyboards/draytronics/elise/readme.md b/keyboards/draytronics/elise/readme.md new file mode 100644 index 000000000..278bc1065 --- /dev/null +++ b/keyboards/draytronics/elise/readme.md | |||
@@ -0,0 +1,32 @@ | |||
1 | # ELISE | ||
2 | |||
3 |  | ||
4 | |||
5 | A open source, low cost 65% keyboard PCB with USB-C, ESD protection, RGB underglow and XD68 case / plate compatability. Designed in the UK. | ||
6 | More info / sales / PCB designs available at [draytronics.co.uk/elise](https://draytronics.co.uk) | ||
7 | |||
8 | * Keyboard Maintainer: [Blake Drayson](https://github.com/ghostseven) | ||
9 | * Hardware Supported: ELISE PCB / ATMega32U4 | ||
10 | * Hardware Availability: [draytronics.co.uk](https://draytronics.co.uk) | ||
11 | |||
12 | |||
13 | Entering DFU mode (to allow flashing): | ||
14 | |||
15 | - Pressing the reset button on the back of the board when it is plugged in will enter DFU. | ||
16 | - Holding down the ESC key whilst plugging in the keyboard will enter DFU. | ||
17 | - If you have one of the provided keymaps flashed, then pressing FN-Tab will enter DFU. | ||
18 | |||
19 | Make example for this keyboard (after setting up your build environment): | ||
20 | |||
21 | make draytronics/elise:default | ||
22 | |||
23 | Flashing example for this keyboard: | ||
24 | |||
25 | make draytronics/elise:default:flash | ||
26 | |||
27 | 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). | ||
28 | |||
29 | |||
30 |  | ||
31 | |||
32 |  | ||
diff --git a/keyboards/draytronics/elise/rules.mk b/keyboards/draytronics/elise/rules.mk new file mode 100644 index 000000000..e7017486d --- /dev/null +++ b/keyboards/draytronics/elise/rules.mk | |||
@@ -0,0 +1,20 @@ | |||
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 = yes # Enable Bootmagic Lite | ||
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 = yes # Commands for debug and configuration | ||
15 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
18 | AUDIO_ENABLE = no # Audio output | ||
19 | |||
20 | LAYOUTS = 65_ansi 65_iso | ||
diff --git a/keyboards/draytronics/elise_v2/config.h b/keyboards/draytronics/elise_v2/config.h new file mode 100644 index 000000000..931125e11 --- /dev/null +++ b/keyboards/draytronics/elise_v2/config.h | |||
@@ -0,0 +1,79 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #include "config_common.h" | ||
22 | |||
23 | /* USB Device descriptor parameter */ | ||
24 | #define VENDOR_ID 0x4454 //DT for DrayTronics | ||
25 | #define PRODUCT_ID 0x454C //EL for Elise | ||
26 | #define DEVICE_VER 0x0200 //Version 2 | ||
27 | #define MANUFACTURER Draytronics | ||
28 | #define PRODUCT ELISE | ||
29 | |||
30 | /* key matrix size */ | ||
31 | #define MATRIX_ROWS 5 | ||
32 | #define MATRIX_COLS 15 | ||
33 | |||
34 | /* | ||
35 | * Keyboard Matrix Assignments | ||
36 | * | ||
37 | * Change this to how you wired your keyboard | ||
38 | * COLS: AVR pins used for columns, left to right | ||
39 | * ROWS: AVR pins used for rows, top to bottom | ||
40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
42 | * | ||
43 | */ | ||
44 | #define MATRIX_ROW_PINS { B2,B3, B1, F0, F1} | ||
45 | #define MATRIX_COL_PINS { F4, F5, F6, F7, C7, C6, B6, B5, B4, D7, D6, D4, D2, D3, D5} | ||
46 | #define UNUSED_PINS | ||
47 | |||
48 | /* COL2ROW, ROW2COL*/ | ||
49 | #define DIODE_DIRECTION COL2ROW | ||
50 | |||
51 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
52 | #define DEBOUNCE 5 | ||
53 | |||
54 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
55 | #define LOCKING_SUPPORT_ENABLE | ||
56 | /* Locking resynchronize hack */ | ||
57 | #define LOCKING_RESYNC_ENABLE | ||
58 | |||
59 | // ws2812 options | ||
60 | #define RGB_DI_PIN D1 // pin the DI on the ws2812 is hooked-up to | ||
61 | #ifdef RGB_DI_PIN | ||
62 | #define RGBLED_NUM 16 | ||
63 | #define RGBLIGHT_HUE_STEP 8 | ||
64 | #define RGBLIGHT_SAT_STEP 8 | ||
65 | #define RGBLIGHT_VAL_STEP 8 | ||
66 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
67 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
68 | /*== all animations enable ==*/ | ||
69 | #define RGBLIGHT_EFFECT_BREATHING | ||
70 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
71 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
72 | #define RGBLIGHT_EFFECT_SNAKE | ||
73 | #define RGBLIGHT_EFFECT_KNIGHT | ||
74 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
75 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
76 | #define RGBLIGHT_EFFECT_RGB_TEST | ||
77 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
78 | #define RGBLIGHT_EFFECT_TWINKLE | ||
79 | #endif | ||
diff --git a/keyboards/draytronics/elise_v2/elise_v2.c b/keyboards/draytronics/elise_v2/elise_v2.c new file mode 100755 index 000000000..f153d7a34 --- /dev/null +++ b/keyboards/draytronics/elise_v2/elise_v2.c | |||
@@ -0,0 +1,18 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | #include "elise_v2.h" | ||
diff --git a/keyboards/draytronics/elise_v2/elise_v2.h b/keyboards/draytronics/elise_v2/elise_v2.h new file mode 100755 index 000000000..750d651a2 --- /dev/null +++ b/keyboards/draytronics/elise_v2/elise_v2.h | |||
@@ -0,0 +1,135 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #define _x_ KC_NO | ||
22 | |||
23 | #include "quantum.h" | ||
24 | |||
25 | #define LAYOUT_65_ansi( \ | ||
26 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
27 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
28 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
29 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
30 | K40, K41, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
31 | ) { \ | ||
32 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
33 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
34 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
35 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
36 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
37 | } | ||
38 | |||
39 | #define LAYOUT_65_ansi_rwkl( \ | ||
40 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
41 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
42 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
43 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
44 | K40, K41, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
45 | ) { \ | ||
46 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
47 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
48 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
49 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
50 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
51 | } | ||
52 | |||
53 | #define LAYOUT_65_ansi_lwkl( \ | ||
54 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
55 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
56 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
57 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
58 | K40, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
59 | ) { \ | ||
60 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
61 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
62 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
63 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
64 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
65 | } | ||
66 | |||
67 | #define LAYOUT_65_ansi_wkl( \ | ||
68 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
69 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
70 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \ | ||
71 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
72 | K40, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
73 | ) { \ | ||
74 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
75 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
76 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
77 | { K30, _x_, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
78 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
79 | } | ||
80 | |||
81 | #define LAYOUT_65_iso( \ | ||
82 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
83 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
84 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
85 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
86 | K40, K41, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
87 | ) { \ | ||
88 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
89 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
90 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
91 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
92 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
93 | } | ||
94 | |||
95 | #define LAYOUT_65_iso_rwkl( \ | ||
96 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
97 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
98 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
99 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
100 | K40, K41, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
101 | ) { \ | ||
102 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
103 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
104 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
105 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
106 | { K40, K41, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
107 | } | ||
108 | |||
109 | #define LAYOUT_65_iso_lwkl( \ | ||
110 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
111 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
112 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
113 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
114 | K40, K42, K45, K49, K4A, K4B, K4C, K4D, K4E \ | ||
115 | ) { \ | ||
116 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
117 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
118 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
119 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
120 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, K4A, K4B, K4C, K4D, K4E} \ | ||
121 | } | ||
122 | |||
123 | #define LAYOUT_65_iso_wkl( \ | ||
124 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
125 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ | ||
126 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K1D, K2E, \ | ||
127 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
128 | K40, K42, K45, K49, K4B, K4C, K4D, K4E \ | ||
129 | ) { \ | ||
130 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
131 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
132 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, _x_, K2D, K2E }, \ | ||
133 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
134 | { K40, _x_, K42, _x_, _x_, K45, _x_, _x_, _x_, K49, _x_, K4B, K4C, K4D, K4E} \ | ||
135 | } | ||
diff --git a/keyboards/draytronics/elise_v2/info.json b/keyboards/draytronics/elise_v2/info.json new file mode 100644 index 000000000..9e391ad1d --- /dev/null +++ b/keyboards/draytronics/elise_v2/info.json | |||
@@ -0,0 +1,619 @@ | |||
1 | { | ||
2 | "keyboard_name": "Draytronics ELISE V2", | ||
3 | "url": "https://www.draytronics.co.uk/elisev2", | ||
4 | "maintainer": "ghostseven", | ||
5 | "layout_aliases": { | ||
6 | "LAYOUT_65_ansi_right_lrg": "LAYOUT_65_ansi_rwkl", | ||
7 | "LAYOUT_65_ansi_left_lrg": "LAYOUT_65_ansi_lwkl", | ||
8 | "LAYOUT_65_ansi_lrg": "LAYOUT_65_ansi_wkl", | ||
9 | "LAYOUT_65_iso_right_lrg": "LAYOUT_65_iso_rwkl", | ||
10 | "LAYOUT_65_iso_left_lrg": "LAYOUT_65_iso_lwkl", | ||
11 | "LAYOUT_65_iso_lrg": "LAYOUT_65_iso_wkl" | ||
12 | }, | ||
13 | "layouts": { | ||
14 | "LAYOUT_65_ansi": { | ||
15 | "layout": [ | ||
16 | {"label":"Esc", "x":0, "y":0}, | ||
17 | {"label":"1", "x":1, "y":0}, | ||
18 | {"label":"2", "x":2, "y":0}, | ||
19 | {"label":"3", "x":3, "y":0}, | ||
20 | {"label":"4", "x":4, "y":0}, | ||
21 | {"label":"5", "x":5, "y":0}, | ||
22 | {"label":"6", "x":6, "y":0}, | ||
23 | {"label":"7", "x":7, "y":0}, | ||
24 | {"label":"8", "x":8, "y":0}, | ||
25 | {"label":"9", "x":9, "y":0}, | ||
26 | {"label":"10", "x":10, "y":0}, | ||
27 | {"label":"-", "x":11, "y":0}, | ||
28 | {"label":"=", "x":12, "y":0}, | ||
29 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
30 | {"label":"~", "x":15, "y":0}, | ||
31 | |||
32 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
33 | {"label":"Q", "x":1.5, "y":1}, | ||
34 | {"label":"W", "x":2.5, "y":1}, | ||
35 | {"label":"E", "x":3.5, "y":1}, | ||
36 | {"label":"R", "x":4.5, "y":1}, | ||
37 | {"label":"T", "x":5.5, "y":1}, | ||
38 | {"label":"Y", "x":6.5, "y":1}, | ||
39 | {"label":"U", "x":7.5, "y":1}, | ||
40 | {"label":"I", "x":8.5, "y":1}, | ||
41 | {"label":"O", "x":9.5, "y":1}, | ||
42 | {"label":"P", "x":10.5, "y":1}, | ||
43 | {"label":"[", "x":11.5, "y":1}, | ||
44 | {"label":"]", "x":12.5, "y":1}, | ||
45 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
46 | {"label":"Delete", "x":15, "y":1}, | ||
47 | |||
48 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
49 | {"label":"A", "x":1.75, "y":2}, | ||
50 | {"label":"S", "x":2.75, "y":2}, | ||
51 | {"label":"D", "x":3.75, "y":2}, | ||
52 | {"label":"F", "x":4.75, "y":2}, | ||
53 | {"label":"G", "x":5.75, "y":2}, | ||
54 | {"label":"H", "x":6.75, "y":2}, | ||
55 | {"label":"J", "x":7.75, "y":2}, | ||
56 | {"label":"K", "x":8.75, "y":2}, | ||
57 | {"label":"L", "x":9.75, "y":2}, | ||
58 | {"label":";", "x":10.75, "y":2}, | ||
59 | {"label":"'", "x":11.75, "y":2}, | ||
60 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
61 | {"label":"PgUp", "x":15, "y":2}, | ||
62 | |||
63 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
64 | {"label":"Z", "x":2.25, "y":3}, | ||
65 | {"label":"X", "x":3.25, "y":3}, | ||
66 | {"label":"C", "x":4.25, "y":3}, | ||
67 | {"label":"V", "x":5.25, "y":3}, | ||
68 | {"label":"B", "x":6.25, "y":3}, | ||
69 | {"label":"N", "x":7.25, "y":3}, | ||
70 | {"label":"M", "x":8.25, "y":3}, | ||
71 | {"label":",", "x":9.25, "y":3}, | ||
72 | {"label":".", "x":10.25, "y":3}, | ||
73 | {"label":"/", "x":11.25, "y":3}, | ||
74 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
75 | {"label":"\u2191", "x":14, "y":3}, | ||
76 | {"label":"PgDn", "x":15, "y":3}, | ||
77 | |||
78 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
79 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
80 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
81 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
82 | {"label":"Alt", "x":10, "y":4}, | ||
83 | {"label":"Fn", "x":11, "y":4}, | ||
84 | {"label":"Ctrl", "x":12, "y":4}, | ||
85 | {"label":"\u2190", "x":13, "y":4}, | ||
86 | {"label":"\u2193", "x":14, "y":4}, | ||
87 | {"label":"\u2192", "x":15, "y":4} | ||
88 | ] | ||
89 | }, | ||
90 | "LAYOUT_65_ansi_rwkl": { | ||
91 | "layout": [ | ||
92 | {"label":"Esc", "x":0, "y":0}, | ||
93 | {"label":"1", "x":1, "y":0}, | ||
94 | {"label":"2", "x":2, "y":0}, | ||
95 | {"label":"3", "x":3, "y":0}, | ||
96 | {"label":"4", "x":4, "y":0}, | ||
97 | {"label":"5", "x":5, "y":0}, | ||
98 | {"label":"6", "x":6, "y":0}, | ||
99 | {"label":"7", "x":7, "y":0}, | ||
100 | {"label":"8", "x":8, "y":0}, | ||
101 | {"label":"9", "x":9, "y":0}, | ||
102 | {"label":"10", "x":10, "y":0}, | ||
103 | {"label":"-", "x":11, "y":0}, | ||
104 | {"label":"=", "x":12, "y":0}, | ||
105 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
106 | {"label":"~", "x":15, "y":0}, | ||
107 | |||
108 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
109 | {"label":"Q", "x":1.5, "y":1}, | ||
110 | {"label":"W", "x":2.5, "y":1}, | ||
111 | {"label":"E", "x":3.5, "y":1}, | ||
112 | {"label":"R", "x":4.5, "y":1}, | ||
113 | {"label":"T", "x":5.5, "y":1}, | ||
114 | {"label":"Y", "x":6.5, "y":1}, | ||
115 | {"label":"U", "x":7.5, "y":1}, | ||
116 | {"label":"I", "x":8.5, "y":1}, | ||
117 | {"label":"O", "x":9.5, "y":1}, | ||
118 | {"label":"P", "x":10.5, "y":1}, | ||
119 | {"label":"[", "x":11.5, "y":1}, | ||
120 | {"label":"]", "x":12.5, "y":1}, | ||
121 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
122 | {"label":"Delete", "x":15, "y":1}, | ||
123 | |||
124 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
125 | {"label":"A", "x":1.75, "y":2}, | ||
126 | {"label":"S", "x":2.75, "y":2}, | ||
127 | {"label":"D", "x":3.75, "y":2}, | ||
128 | {"label":"F", "x":4.75, "y":2}, | ||
129 | {"label":"G", "x":5.75, "y":2}, | ||
130 | {"label":"H", "x":6.75, "y":2}, | ||
131 | {"label":"J", "x":7.75, "y":2}, | ||
132 | {"label":"K", "x":8.75, "y":2}, | ||
133 | {"label":"L", "x":9.75, "y":2}, | ||
134 | {"label":";", "x":10.75, "y":2}, | ||
135 | {"label":"'", "x":11.75, "y":2}, | ||
136 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
137 | {"label":"PgUp", "x":15, "y":2}, | ||
138 | |||
139 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
140 | {"label":"Z", "x":2.25, "y":3}, | ||
141 | {"label":"X", "x":3.25, "y":3}, | ||
142 | {"label":"C", "x":4.25, "y":3}, | ||
143 | {"label":"V", "x":5.25, "y":3}, | ||
144 | {"label":"B", "x":6.25, "y":3}, | ||
145 | {"label":"N", "x":7.25, "y":3}, | ||
146 | {"label":"M", "x":8.25, "y":3}, | ||
147 | {"label":",", "x":9.25, "y":3}, | ||
148 | {"label":".", "x":10.25, "y":3}, | ||
149 | {"label":"/", "x":11.25, "y":3}, | ||
150 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
151 | {"label":"\u2191", "x":14, "y":3}, | ||
152 | {"label":"PgDn", "x":15, "y":3}, | ||
153 | |||
154 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
155 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
156 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
157 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
158 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
159 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
160 | {"label":"\u2190", "x":13, "y":4}, | ||
161 | {"label":"\u2193", "x":14, "y":4}, | ||
162 | {"label":"\u2192", "x":15, "y":4} | ||
163 | ] | ||
164 | }, | ||
165 | "LAYOUT_65_ansi_lwkl": { | ||
166 | "layout": [ | ||
167 | {"label":"Esc", "x":0, "y":0}, | ||
168 | {"label":"1", "x":1, "y":0}, | ||
169 | {"label":"2", "x":2, "y":0}, | ||
170 | {"label":"3", "x":3, "y":0}, | ||
171 | {"label":"4", "x":4, "y":0}, | ||
172 | {"label":"5", "x":5, "y":0}, | ||
173 | {"label":"6", "x":6, "y":0}, | ||
174 | {"label":"7", "x":7, "y":0}, | ||
175 | {"label":"8", "x":8, "y":0}, | ||
176 | {"label":"9", "x":9, "y":0}, | ||
177 | {"label":"10", "x":10, "y":0}, | ||
178 | {"label":"-", "x":11, "y":0}, | ||
179 | {"label":"=", "x":12, "y":0}, | ||
180 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
181 | {"label":"~", "x":15, "y":0}, | ||
182 | |||
183 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
184 | {"label":"Q", "x":1.5, "y":1}, | ||
185 | {"label":"W", "x":2.5, "y":1}, | ||
186 | {"label":"E", "x":3.5, "y":1}, | ||
187 | {"label":"R", "x":4.5, "y":1}, | ||
188 | {"label":"T", "x":5.5, "y":1}, | ||
189 | {"label":"Y", "x":6.5, "y":1}, | ||
190 | {"label":"U", "x":7.5, "y":1}, | ||
191 | {"label":"I", "x":8.5, "y":1}, | ||
192 | {"label":"O", "x":9.5, "y":1}, | ||
193 | {"label":"P", "x":10.5, "y":1}, | ||
194 | {"label":"[", "x":11.5, "y":1}, | ||
195 | {"label":"]", "x":12.5, "y":1}, | ||
196 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
197 | {"label":"Delete", "x":15, "y":1}, | ||
198 | |||
199 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
200 | {"label":"A", "x":1.75, "y":2}, | ||
201 | {"label":"S", "x":2.75, "y":2}, | ||
202 | {"label":"D", "x":3.75, "y":2}, | ||
203 | {"label":"F", "x":4.75, "y":2}, | ||
204 | {"label":"G", "x":5.75, "y":2}, | ||
205 | {"label":"H", "x":6.75, "y":2}, | ||
206 | {"label":"J", "x":7.75, "y":2}, | ||
207 | {"label":"K", "x":8.75, "y":2}, | ||
208 | {"label":"L", "x":9.75, "y":2}, | ||
209 | {"label":";", "x":10.75, "y":2}, | ||
210 | {"label":"'", "x":11.75, "y":2}, | ||
211 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
212 | {"label":"PgUp", "x":15, "y":2}, | ||
213 | |||
214 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
215 | {"label":"Z", "x":2.25, "y":3}, | ||
216 | {"label":"X", "x":3.25, "y":3}, | ||
217 | {"label":"C", "x":4.25, "y":3}, | ||
218 | {"label":"V", "x":5.25, "y":3}, | ||
219 | {"label":"B", "x":6.25, "y":3}, | ||
220 | {"label":"N", "x":7.25, "y":3}, | ||
221 | {"label":"M", "x":8.25, "y":3}, | ||
222 | {"label":",", "x":9.25, "y":3}, | ||
223 | {"label":".", "x":10.25, "y":3}, | ||
224 | {"label":"/", "x":11.25, "y":3}, | ||
225 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
226 | {"label":"\u2191", "x":14, "y":3}, | ||
227 | {"label":"PgDn", "x":15, "y":3}, | ||
228 | |||
229 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
230 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
231 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
232 | {"label":"Alt", "x":10, "y":4}, | ||
233 | {"label":"Fn", "x":11, "y":4}, | ||
234 | {"label":"Ctrl", "x":12, "y":4}, | ||
235 | {"label":"\u2190", "x":13, "y":4}, | ||
236 | {"label":"\u2193", "x":14, "y":4}, | ||
237 | {"label":"\u2192", "x":15, "y":4} | ||
238 | ] | ||
239 | }, | ||
240 | "LAYOUT_65_ansi_wkl": { | ||
241 | "layout": [ | ||
242 | {"label":"Esc", "x":0, "y":0}, | ||
243 | {"label":"1", "x":1, "y":0}, | ||
244 | {"label":"2", "x":2, "y":0}, | ||
245 | {"label":"3", "x":3, "y":0}, | ||
246 | {"label":"4", "x":4, "y":0}, | ||
247 | {"label":"5", "x":5, "y":0}, | ||
248 | {"label":"6", "x":6, "y":0}, | ||
249 | {"label":"7", "x":7, "y":0}, | ||
250 | {"label":"8", "x":8, "y":0}, | ||
251 | {"label":"9", "x":9, "y":0}, | ||
252 | {"label":"10", "x":10, "y":0}, | ||
253 | {"label":"-", "x":11, "y":0}, | ||
254 | {"label":"=", "x":12, "y":0}, | ||
255 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
256 | {"label":"~", "x":15, "y":0}, | ||
257 | |||
258 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
259 | {"label":"Q", "x":1.5, "y":1}, | ||
260 | {"label":"W", "x":2.5, "y":1}, | ||
261 | {"label":"E", "x":3.5, "y":1}, | ||
262 | {"label":"R", "x":4.5, "y":1}, | ||
263 | {"label":"T", "x":5.5, "y":1}, | ||
264 | {"label":"Y", "x":6.5, "y":1}, | ||
265 | {"label":"U", "x":7.5, "y":1}, | ||
266 | {"label":"I", "x":8.5, "y":1}, | ||
267 | {"label":"O", "x":9.5, "y":1}, | ||
268 | {"label":"P", "x":10.5, "y":1}, | ||
269 | {"label":"[", "x":11.5, "y":1}, | ||
270 | {"label":"]", "x":12.5, "y":1}, | ||
271 | {"label":"\\", "x":13.5, "y":1, "w":1.5}, | ||
272 | {"label":"Delete", "x":15, "y":1}, | ||
273 | |||
274 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
275 | {"label":"A", "x":1.75, "y":2}, | ||
276 | {"label":"S", "x":2.75, "y":2}, | ||
277 | {"label":"D", "x":3.75, "y":2}, | ||
278 | {"label":"F", "x":4.75, "y":2}, | ||
279 | {"label":"G", "x":5.75, "y":2}, | ||
280 | {"label":"H", "x":6.75, "y":2}, | ||
281 | {"label":"J", "x":7.75, "y":2}, | ||
282 | {"label":"K", "x":8.75, "y":2}, | ||
283 | {"label":"L", "x":9.75, "y":2}, | ||
284 | {"label":";", "x":10.75, "y":2}, | ||
285 | {"label":"'", "x":11.75, "y":2}, | ||
286 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
287 | {"label":"PgUp", "x":15, "y":2}, | ||
288 | |||
289 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
290 | {"label":"Z", "x":2.25, "y":3}, | ||
291 | {"label":"X", "x":3.25, "y":3}, | ||
292 | {"label":"C", "x":4.25, "y":3}, | ||
293 | {"label":"V", "x":5.25, "y":3}, | ||
294 | {"label":"B", "x":6.25, "y":3}, | ||
295 | {"label":"N", "x":7.25, "y":3}, | ||
296 | {"label":"M", "x":8.25, "y":3}, | ||
297 | {"label":",", "x":9.25, "y":3}, | ||
298 | {"label":".", "x":10.25, "y":3}, | ||
299 | {"label":"/", "x":11.25, "y":3}, | ||
300 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
301 | {"label":"\u2191", "x":14, "y":3}, | ||
302 | {"label":"PgDn", "x":15, "y":3}, | ||
303 | |||
304 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
305 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
306 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
307 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
308 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
309 | {"label":"\u2190", "x":13, "y":4}, | ||
310 | {"label":"\u2193", "x":14, "y":4}, | ||
311 | {"label":"\u2192", "x":15, "y":4} | ||
312 | ] | ||
313 | }, | ||
314 | "LAYOUT_65_iso": { | ||
315 | "layout": [ | ||
316 | {"label":"Esc", "x":0, "y":0}, | ||
317 | {"label":"1", "x":1, "y":0}, | ||
318 | {"label":"2", "x":2, "y":0}, | ||
319 | {"label":"3", "x":3, "y":0}, | ||
320 | {"label":"4", "x":4, "y":0}, | ||
321 | {"label":"5", "x":5, "y":0}, | ||
322 | {"label":"6", "x":6, "y":0}, | ||
323 | {"label":"7", "x":7, "y":0}, | ||
324 | {"label":"8", "x":8, "y":0}, | ||
325 | {"label":"9", "x":9, "y":0}, | ||
326 | {"label":"10", "x":10, "y":0}, | ||
327 | {"label":"-", "x":11, "y":0}, | ||
328 | {"label":"=", "x":12, "y":0}, | ||
329 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
330 | {"label":"~", "x":15, "y":0}, | ||
331 | |||
332 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
333 | {"label":"Q", "x":1.5, "y":1}, | ||
334 | {"label":"W", "x":2.5, "y":1}, | ||
335 | {"label":"E", "x":3.5, "y":1}, | ||
336 | {"label":"R", "x":4.5, "y":1}, | ||
337 | {"label":"T", "x":5.5, "y":1}, | ||
338 | {"label":"Y", "x":6.5, "y":1}, | ||
339 | {"label":"U", "x":7.5, "y":1}, | ||
340 | {"label":"I", "x":8.5, "y":1}, | ||
341 | {"label":"O", "x":9.5, "y":1}, | ||
342 | {"label":"P", "x":10.5, "y":1}, | ||
343 | {"label":"[", "x":11.5, "y":1}, | ||
344 | {"label":"]", "x":12.5, "y":1}, | ||
345 | {"label":"Delete", "x":15, "y":1}, | ||
346 | |||
347 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
348 | {"label":"A", "x":1.75, "y":2}, | ||
349 | {"label":"S", "x":2.75, "y":2}, | ||
350 | {"label":"D", "x":3.75, "y":2}, | ||
351 | {"label":"F", "x":4.75, "y":2}, | ||
352 | {"label":"G", "x":5.75, "y":2}, | ||
353 | {"label":"H", "x":6.75, "y":2}, | ||
354 | {"label":"J", "x":7.75, "y":2}, | ||
355 | {"label":"K", "x":8.75, "y":2}, | ||
356 | {"label":"L", "x":9.75, "y":2}, | ||
357 | {"label":";", "x":10.75, "y":2}, | ||
358 | {"label":"'", "x":11.75, "y":2}, | ||
359 | {"label":"#", "x":12.75, "y":2}, | ||
360 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
361 | {"label":"PgUp", "x":15, "y":2}, | ||
362 | |||
363 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
364 | {"label":"\\", "x":1.25, "y":3}, | ||
365 | {"label":"Z", "x":2.25, "y":3}, | ||
366 | {"label":"X", "x":3.25, "y":3}, | ||
367 | {"label":"C", "x":4.25, "y":3}, | ||
368 | {"label":"V", "x":5.25, "y":3}, | ||
369 | {"label":"B", "x":6.25, "y":3}, | ||
370 | {"label":"N", "x":7.25, "y":3}, | ||
371 | {"label":"M", "x":8.25, "y":3}, | ||
372 | {"label":",", "x":9.25, "y":3}, | ||
373 | {"label":".", "x":10.25, "y":3}, | ||
374 | {"label":"/", "x":11.25, "y":3}, | ||
375 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
376 | {"label":"\u2191", "x":14, "y":3}, | ||
377 | {"label":"PgDn", "x":15, "y":3}, | ||
378 | |||
379 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
380 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
381 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
382 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
383 | {"label":"Alt", "x":10, "y":4}, | ||
384 | {"label":"Fn", "x":11, "y":4}, | ||
385 | {"label":"Ctrl", "x":12, "y":4}, | ||
386 | {"label":"\u2190", "x":13, "y":4}, | ||
387 | {"label":"\u2193", "x":14, "y":4}, | ||
388 | {"label":"\u2192", "x":15, "y":4} | ||
389 | ] | ||
390 | }, | ||
391 | "LAYOUT_65_iso_rwkl": { | ||
392 | "layout": [ | ||
393 | {"label":"Esc", "x":0, "y":0}, | ||
394 | {"label":"1", "x":1, "y":0}, | ||
395 | {"label":"2", "x":2, "y":0}, | ||
396 | {"label":"3", "x":3, "y":0}, | ||
397 | {"label":"4", "x":4, "y":0}, | ||
398 | {"label":"5", "x":5, "y":0}, | ||
399 | {"label":"6", "x":6, "y":0}, | ||
400 | {"label":"7", "x":7, "y":0}, | ||
401 | {"label":"8", "x":8, "y":0}, | ||
402 | {"label":"9", "x":9, "y":0}, | ||
403 | {"label":"10", "x":10, "y":0}, | ||
404 | {"label":"-", "x":11, "y":0}, | ||
405 | {"label":"=", "x":12, "y":0}, | ||
406 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
407 | {"label":"~", "x":15, "y":0}, | ||
408 | |||
409 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
410 | {"label":"Q", "x":1.5, "y":1}, | ||
411 | {"label":"W", "x":2.5, "y":1}, | ||
412 | {"label":"E", "x":3.5, "y":1}, | ||
413 | {"label":"R", "x":4.5, "y":1}, | ||
414 | {"label":"T", "x":5.5, "y":1}, | ||
415 | {"label":"Y", "x":6.5, "y":1}, | ||
416 | {"label":"U", "x":7.5, "y":1}, | ||
417 | {"label":"I", "x":8.5, "y":1}, | ||
418 | {"label":"O", "x":9.5, "y":1}, | ||
419 | {"label":"P", "x":10.5, "y":1}, | ||
420 | {"label":"[", "x":11.5, "y":1}, | ||
421 | {"label":"]", "x":12.5, "y":1}, | ||
422 | {"label":"Delete", "x":15, "y":1}, | ||
423 | |||
424 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
425 | {"label":"A", "x":1.75, "y":2}, | ||
426 | {"label":"S", "x":2.75, "y":2}, | ||
427 | {"label":"D", "x":3.75, "y":2}, | ||
428 | {"label":"F", "x":4.75, "y":2}, | ||
429 | {"label":"G", "x":5.75, "y":2}, | ||
430 | {"label":"H", "x":6.75, "y":2}, | ||
431 | {"label":"J", "x":7.75, "y":2}, | ||
432 | {"label":"K", "x":8.75, "y":2}, | ||
433 | {"label":"L", "x":9.75, "y":2}, | ||
434 | {"label":";", "x":10.75, "y":2}, | ||
435 | {"label":"'", "x":11.75, "y":2}, | ||
436 | {"label":"#", "x":12.75, "y":2}, | ||
437 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
438 | {"label":"PgUp", "x":15, "y":2}, | ||
439 | |||
440 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
441 | {"label":"\\", "x":1.25, "y":3}, | ||
442 | {"label":"Z", "x":2.25, "y":3}, | ||
443 | {"label":"X", "x":3.25, "y":3}, | ||
444 | {"label":"C", "x":4.25, "y":3}, | ||
445 | {"label":"V", "x":5.25, "y":3}, | ||
446 | {"label":"B", "x":6.25, "y":3}, | ||
447 | {"label":"N", "x":7.25, "y":3}, | ||
448 | {"label":"M", "x":8.25, "y":3}, | ||
449 | {"label":",", "x":9.25, "y":3}, | ||
450 | {"label":".", "x":10.25, "y":3}, | ||
451 | {"label":"/", "x":11.25, "y":3}, | ||
452 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
453 | {"label":"\u2191", "x":14, "y":3}, | ||
454 | {"label":"PgDn", "x":15, "y":3}, | ||
455 | |||
456 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
457 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
458 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
459 | {"label":"Space", "x":3.75, "y":4, "w":6.25}, | ||
460 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
461 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
462 | {"label":"\u2190", "x":13, "y":4}, | ||
463 | {"label":"\u2193", "x":14, "y":4}, | ||
464 | {"label":"\u2192", "x":15, "y":4} | ||
465 | ] | ||
466 | }, | ||
467 | "LAYOUT_65_iso_lwkl": { | ||
468 | "layout": [ | ||
469 | {"label":"Esc", "x":0, "y":0}, | ||
470 | {"label":"1", "x":1, "y":0}, | ||
471 | {"label":"2", "x":2, "y":0}, | ||
472 | {"label":"3", "x":3, "y":0}, | ||
473 | {"label":"4", "x":4, "y":0}, | ||
474 | {"label":"5", "x":5, "y":0}, | ||
475 | {"label":"6", "x":6, "y":0}, | ||
476 | {"label":"7", "x":7, "y":0}, | ||
477 | {"label":"8", "x":8, "y":0}, | ||
478 | {"label":"9", "x":9, "y":0}, | ||
479 | {"label":"10", "x":10, "y":0}, | ||
480 | {"label":"-", "x":11, "y":0}, | ||
481 | {"label":"=", "x":12, "y":0}, | ||
482 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
483 | {"label":"~", "x":15, "y":0}, | ||
484 | |||
485 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
486 | {"label":"Q", "x":1.5, "y":1}, | ||
487 | {"label":"W", "x":2.5, "y":1}, | ||
488 | {"label":"E", "x":3.5, "y":1}, | ||
489 | {"label":"R", "x":4.5, "y":1}, | ||
490 | {"label":"T", "x":5.5, "y":1}, | ||
491 | {"label":"Y", "x":6.5, "y":1}, | ||
492 | {"label":"U", "x":7.5, "y":1}, | ||
493 | {"label":"I", "x":8.5, "y":1}, | ||
494 | {"label":"O", "x":9.5, "y":1}, | ||
495 | {"label":"P", "x":10.5, "y":1}, | ||
496 | {"label":"[", "x":11.5, "y":1}, | ||
497 | {"label":"]", "x":12.5, "y":1}, | ||
498 | {"label":"Delete", "x":15, "y":1}, | ||
499 | |||
500 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
501 | {"label":"A", "x":1.75, "y":2}, | ||
502 | {"label":"S", "x":2.75, "y":2}, | ||
503 | {"label":"D", "x":3.75, "y":2}, | ||
504 | {"label":"F", "x":4.75, "y":2}, | ||
505 | {"label":"G", "x":5.75, "y":2}, | ||
506 | {"label":"H", "x":6.75, "y":2}, | ||
507 | {"label":"J", "x":7.75, "y":2}, | ||
508 | {"label":"K", "x":8.75, "y":2}, | ||
509 | {"label":"L", "x":9.75, "y":2}, | ||
510 | {"label":";", "x":10.75, "y":2}, | ||
511 | {"label":"'", "x":11.75, "y":2}, | ||
512 | {"label":"#", "x":12.75, "y":2}, | ||
513 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
514 | {"label":"PgUp", "x":15, "y":2}, | ||
515 | |||
516 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
517 | {"label":"\\", "x":1.25, "y":3}, | ||
518 | {"label":"Z", "x":2.25, "y":3}, | ||
519 | {"label":"X", "x":3.25, "y":3}, | ||
520 | {"label":"C", "x":4.25, "y":3}, | ||
521 | {"label":"V", "x":5.25, "y":3}, | ||
522 | {"label":"B", "x":6.25, "y":3}, | ||
523 | {"label":"N", "x":7.25, "y":3}, | ||
524 | {"label":"M", "x":8.25, "y":3}, | ||
525 | {"label":",", "x":9.25, "y":3}, | ||
526 | {"label":".", "x":10.25, "y":3}, | ||
527 | {"label":"/", "x":11.25, "y":3}, | ||
528 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
529 | {"label":"\u2191", "x":14, "y":3}, | ||
530 | {"label":"PgDn", "x":15, "y":3}, | ||
531 | |||
532 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
533 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
534 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
535 | {"label":"Alt", "x":10, "y":4}, | ||
536 | {"label":"Fn", "x":11, "y":4}, | ||
537 | {"label":"Ctrl", "x":12, "y":4}, | ||
538 | {"label":"\u2190", "x":13, "y":4}, | ||
539 | {"label":"\u2193", "x":14, "y":4}, | ||
540 | {"label":"\u2192", "x":15, "y":4} | ||
541 | ] | ||
542 | }, | ||
543 | "LAYOUT_65_iso_wkl": { | ||
544 | "layout": [ | ||
545 | {"label":"Esc", "x":0, "y":0}, | ||
546 | {"label":"1", "x":1, "y":0}, | ||
547 | {"label":"2", "x":2, "y":0}, | ||
548 | {"label":"3", "x":3, "y":0}, | ||
549 | {"label":"4", "x":4, "y":0}, | ||
550 | {"label":"5", "x":5, "y":0}, | ||
551 | {"label":"6", "x":6, "y":0}, | ||
552 | {"label":"7", "x":7, "y":0}, | ||
553 | {"label":"8", "x":8, "y":0}, | ||
554 | {"label":"9", "x":9, "y":0}, | ||
555 | {"label":"10", "x":10, "y":0}, | ||
556 | {"label":"-", "x":11, "y":0}, | ||
557 | {"label":"=", "x":12, "y":0}, | ||
558 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
559 | {"label":"~", "x":15, "y":0}, | ||
560 | |||
561 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
562 | {"label":"Q", "x":1.5, "y":1}, | ||
563 | {"label":"W", "x":2.5, "y":1}, | ||
564 | {"label":"E", "x":3.5, "y":1}, | ||
565 | {"label":"R", "x":4.5, "y":1}, | ||
566 | {"label":"T", "x":5.5, "y":1}, | ||
567 | {"label":"Y", "x":6.5, "y":1}, | ||
568 | {"label":"U", "x":7.5, "y":1}, | ||
569 | {"label":"I", "x":8.5, "y":1}, | ||
570 | {"label":"O", "x":9.5, "y":1}, | ||
571 | {"label":"P", "x":10.5, "y":1}, | ||
572 | {"label":"[", "x":11.5, "y":1}, | ||
573 | {"label":"]", "x":12.5, "y":1}, | ||
574 | {"label":"Delete", "x":15, "y":1}, | ||
575 | |||
576 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
577 | {"label":"A", "x":1.75, "y":2}, | ||
578 | {"label":"S", "x":2.75, "y":2}, | ||
579 | {"label":"D", "x":3.75, "y":2}, | ||
580 | {"label":"F", "x":4.75, "y":2}, | ||
581 | {"label":"G", "x":5.75, "y":2}, | ||
582 | {"label":"H", "x":6.75, "y":2}, | ||
583 | {"label":"J", "x":7.75, "y":2}, | ||
584 | {"label":"K", "x":8.75, "y":2}, | ||
585 | {"label":"L", "x":9.75, "y":2}, | ||
586 | {"label":";", "x":10.75, "y":2}, | ||
587 | {"label":"'", "x":11.75, "y":2}, | ||
588 | {"label":"#", "x":12.75, "y":2}, | ||
589 | {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, | ||
590 | {"label":"PgUp", "x":15, "y":2}, | ||
591 | |||
592 | {"label":"Shift", "x":0, "y":3, "w":1.25}, | ||
593 | {"label":"\\", "x":1.25, "y":3}, | ||
594 | {"label":"Z", "x":2.25, "y":3}, | ||
595 | {"label":"X", "x":3.25, "y":3}, | ||
596 | {"label":"C", "x":4.25, "y":3}, | ||
597 | {"label":"V", "x":5.25, "y":3}, | ||
598 | {"label":"B", "x":6.25, "y":3}, | ||
599 | {"label":"N", "x":7.25, "y":3}, | ||
600 | {"label":"M", "x":8.25, "y":3}, | ||
601 | {"label":",", "x":9.25, "y":3}, | ||
602 | {"label":".", "x":10.25, "y":3}, | ||
603 | {"label":"/", "x":11.25, "y":3}, | ||
604 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
605 | {"label":"\u2191", "x":14, "y":3}, | ||
606 | {"label":"PgDn", "x":15, "y":3}, | ||
607 | |||
608 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
609 | {"label":"Alt", "x":1.5, "y":4, "w":1.5}, | ||
610 | {"label":"Space", "x":3, "y":4, "w":7}, | ||
611 | {"label":"Alt", "x":10, "y":4, "w":1.5}, | ||
612 | {"label":"Fn", "x":11.5, "y":4, "w":1.5}, | ||
613 | {"label":"\u2190", "x":13, "y":4}, | ||
614 | {"label":"\u2193", "x":14, "y":4}, | ||
615 | {"label":"\u2192", "x":15, "y":4} | ||
616 | ] | ||
617 | } | ||
618 | } | ||
619 | } | ||
diff --git a/keyboards/draytronics/elise_v2/keymaps/blake_iso/keymap.c b/keyboards/draytronics/elise_v2/keymaps/blake_iso/keymap.c new file mode 100644 index 000000000..65e0629e1 --- /dev/null +++ b/keyboards/draytronics/elise_v2/keymaps/blake_iso/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include QMK_KEYBOARD_H | ||
20 | |||
21 | enum custom_layers { | ||
22 | _BL, | ||
23 | _FL, | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | /* Keymap _BL: (Base Layer) Default Layer | ||
28 | * ,----------------------------------------------------------------. | ||
29 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Home| | ||
30 | * |----------------------------------------------------------------| | ||
31 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| |PgUp| | ||
32 | * |------------------------------------------------------- -----| | ||
33 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '| #|Entr|PgDn| | ||
34 | * |----------------------------------------------------------------| | ||
35 | * |Shift| \ | Z| X| C| V| B| N| M| ,| .| /|RShif| ↑ |End | | ||
36 | * |----------------------------------------------------------------| | ||
37 | * |Ctrl|Win |Alt | Space |RAlt|RCtrl|Fn| ← | ↓ | → | | ||
38 | * `----------------------------------------------------------------' | ||
39 | */ | ||
40 | [_BL] = LAYOUT_65_iso( | ||
41 | 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_HOME, | ||
42 | 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_PGUP, | ||
43 | 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_NUHS, KC_ENT, KC_PGDN, | ||
44 | KC_LSFT, KC_NUBS, 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_END, | ||
45 | KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RALT, KC_RCTL, MO(_FL), KC_LEFT, KC_DOWN, KC_RGHT | ||
46 | ), | ||
47 | |||
48 | /* Keymap _FL1: Function Layer 1 | ||
49 | * ,----------------------------------------------------------------. | ||
50 | * |~ `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| Delete| Ins| | ||
51 | * |----------------------------------------------------------------| | ||
52 | * |RESET| | ↑ | | | | | | | | | | | | | | ||
53 | * |------------------------------------------------------- -----| | ||
54 | * | | ← | ↓ | → | | | | | | | | | | | | | ||
55 | * |----------------------------------------------------------------| | ||
56 | * |HUI |SAI|VAI |RGBMOD| | | | | | | | |Play|V+|Mut| | ||
57 | * |----------------------------------------------------------------| | ||
58 | * |HUD |SAD |VAD | RGB_Tog | | | | <M | V-| M> | | ||
59 | * `----------------------------------------------------------------' | ||
60 | */ | ||
61 | [_FL] = LAYOUT_65_iso( | ||
62 | KC_GRV, 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, KC_INS, | ||
63 | RESET, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
65 | RGB_HUI, RGB_SAI, RGB_VAI, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLU, KC_MUTE, | ||
66 | RGB_HUD, RGB_SAD, RGB_VAD, RGB_TOG, _______, _______, KC_TRNS, KC_MPRV, KC_VOLD, KC_MNXT | ||
67 | ) | ||
68 | }; | ||
diff --git a/keyboards/draytronics/elise_v2/keymaps/default/keymap.c b/keyboards/draytronics/elise_v2/keymaps/default/keymap.c new file mode 100644 index 000000000..62b4b576d --- /dev/null +++ b/keyboards/draytronics/elise_v2/keymaps/default/keymap.c | |||
@@ -0,0 +1,67 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | #include QMK_KEYBOARD_H | ||
19 | |||
20 | enum custom_layers { | ||
21 | _BL, | ||
22 | _FL, | ||
23 | }; | ||
24 | |||
25 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
26 | /* Keymap _BL: (Base Layer) Default Layer | ||
27 | * ,----------------------------------------------------------------. | ||
28 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Home| | ||
29 | * |----------------------------------------------------------------| | ||
30 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |PgUp| | ||
31 | * |----------------------------------------------------------------| | ||
32 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return |PgDn| | ||
33 | * |----------------------------------------------------------------| | ||
34 | * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |End | | ||
35 | * |----------------------------------------------------------------| | ||
36 | * |Ctrl|Win |Alt | Space |RAlt|FN|RCtrl| ← | ↓ | → | | ||
37 | * `----------------------------------------------------------------' | ||
38 | */ | ||
39 | [_BL] = LAYOUT_65_ansi( | ||
40 | 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_HOME, | ||
41 | 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_PGUP, | ||
42 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_NUHS, KC_ENT, KC_PGDN, | ||
43 | 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_END, | ||
44 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
45 | ), | ||
46 | |||
47 | /* Keymap _FL: Function Layer | ||
48 | * ,----------------------------------------------------------------. | ||
49 | * | ~ | F1|F2 |F3 |F4 |F5 |F6 |F7 |F8 |F9 |F10|F11|F12|Del |INS | | ||
50 | * |----------------------------------------------------------------| | ||
51 | * |RESET| | ↑ | | | | | | | | | | | | | | ||
52 | * |------------------------------------------------------- -----| | ||
53 | * | | ← | ↓ | → | | | | | | | | | | | | | ||
54 | * |----------------------------------------------------------------| | ||
55 | * |HUI |SAI|VAI|RGBMOD| | | | | | | |Play |V+ |Mut | | ||
56 | * |----------------------------------------------------------------| | ||
57 | * |HUD |SAD |VAD | RGB_Tog | | | | <M|V- |M> | | ||
58 | * `----------------------------------------------------------------' | ||
59 | */ | ||
60 | [_FL] = LAYOUT_65_ansi( | ||
61 | KC_GRV, 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, KC_INS, | ||
62 | RESET, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
63 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | RGB_HUI, RGB_SAI, RGB_VAI, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLU, KC_MUTE, | ||
65 | RGB_HUD, RGB_SAD, RGB_VAD, RGB_TOG, _______, KC_TRNS, _______, KC_MPRV, KC_VOLD, KC_MNXT | ||
66 | ), | ||
67 | }; | ||
diff --git a/keyboards/draytronics/elise_v2/keymaps/default_iso/keymap.c b/keyboards/draytronics/elise_v2/keymaps/default_iso/keymap.c new file mode 100644 index 000000000..a51272a35 --- /dev/null +++ b/keyboards/draytronics/elise_v2/keymaps/default_iso/keymap.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /*Copyright 2021 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include QMK_KEYBOARD_H | ||
20 | |||
21 | enum custom_layers { | ||
22 | _BL, | ||
23 | _FL, | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | /* Keymap _BL: (Base Layer) Default Layer | ||
28 | * ,----------------------------------------------------------------. | ||
29 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Home| | ||
30 | * |----------------------------------------------------------------| | ||
31 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| |PgUp| | ||
32 | * |------------------------------------------------------- -----| | ||
33 | * |CAPS | A| S| D| F| G| H| J| K| L| ;| '| #|Entr|PgDn| | ||
34 | * |----------------------------------------------------------------| | ||
35 | * |Shift| \ | Z| X| C| V| B| N| M| ,| .| /|RShif| ↑ |End | | ||
36 | * |----------------------------------------------------------------| | ||
37 | * |Ctrl|Win |Alt | Space |RAlt|RCtrl|Fn| ← | ↓ | → | | ||
38 | * `----------------------------------------------------------------' | ||
39 | */ | ||
40 | [_BL] = LAYOUT_65_iso( | ||
41 | 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_HOME, | ||
42 | 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_PGUP, | ||
43 | 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_NUHS, KC_ENT, KC_PGDN, | ||
44 | KC_LSFT, KC_NUBS, 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_END, | ||
45 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, MO(_FL), KC_LEFT, KC_DOWN, KC_RGHT | ||
46 | ), | ||
47 | |||
48 | /* Keymap _FL1: Function Layer 1 | ||
49 | * ,----------------------------------------------------------------. | ||
50 | * |~ `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| Delete| Ins| | ||
51 | * |----------------------------------------------------------------| | ||
52 | * |RESET| | ↑ | | | | | | | | | | | | | | ||
53 | * |------------------------------------------------------- -----| | ||
54 | * | | ← | ↓ | → | | | | | | | | | | | | | ||
55 | * |----------------------------------------------------------------| | ||
56 | * |HUI |SAI|VAI |RGBMOD| | | | | | | | |Play|V+|Mut| | ||
57 | * |----------------------------------------------------------------| | ||
58 | * |HUD |SAD |VAD | RGB_Tog | | | | <M | V-| M> | | ||
59 | * `----------------------------------------------------------------' | ||
60 | */ | ||
61 | [_FL] = LAYOUT_65_iso( | ||
62 | KC_GRV, 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, KC_INS, | ||
63 | RESET, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
64 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
65 | RGB_HUI, RGB_SAI, RGB_VAI, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_VOLU, KC_MUTE, | ||
66 | RGB_HUD, RGB_SAD, RGB_VAD, RGB_TOG, _______, _______, KC_TRNS, KC_MPRV, KC_VOLD, KC_MNXT | ||
67 | ) | ||
68 | }; | ||
diff --git a/keyboards/draytronics/elise_v2/readme.md b/keyboards/draytronics/elise_v2/readme.md new file mode 100644 index 000000000..32730f930 --- /dev/null +++ b/keyboards/draytronics/elise_v2/readme.md | |||
@@ -0,0 +1,34 @@ | |||
1 | # ELISE V2 | ||
2 | |||
3 |  | ||
4 | |||
5 | ***V2 now includes an tweaked design and 16 RGB underglow LEDs for a more consistent and even underglow effect (up from 7 on the original)*** | ||
6 | |||
7 | A open source, low cost 65% keyboard PCB with USB-C, ESD protection, RGB underglow and XD68 case / plate compatability. Designed in the UK. | ||
8 | More info / sales / PCB designs available at [draytronics.co.uk/elise](https://draytronics.co.uk) | ||
9 | |||
10 | * Keyboard Maintainer: [Blake Drayson](https://github.com/ghostseven) | ||
11 | * Hardware Supported: ELISE PCB / ATMega32U4 | ||
12 | * Hardware Availability: [draytronics.co.uk](https://draytronics.co.uk) | ||
13 | |||
14 | |||
15 | Entering DFU mode (to allow flashing): | ||
16 | |||
17 | - Pressing the reset button on the back of the board when it is plugged in will enter DFU. | ||
18 | - Holding down the ESC key whilst plugging in the keyboard will enter DFU. | ||
19 | - If you have one of the provided keymaps flashed, then pressing FN-Tab will enter DFU. | ||
20 | |||
21 | Make example for this keyboard (after setting up your build environment): | ||
22 | |||
23 | make draytronics/elise_v2:default | ||
24 | |||
25 | Flashing example for this keyboard: | ||
26 | |||
27 | make draytronics/elise_v2:default:flash | ||
28 | |||
29 | 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). | ||
30 | |||
31 | |||
32 |  | ||
33 | |||
34 |  | ||
diff --git a/keyboards/draytronics/elise_v2/rules.mk b/keyboards/draytronics/elise_v2/rules.mk new file mode 100644 index 000000000..e7017486d --- /dev/null +++ b/keyboards/draytronics/elise_v2/rules.mk | |||
@@ -0,0 +1,20 @@ | |||
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 = yes # Enable Bootmagic Lite | ||
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 = yes # Commands for debug and configuration | ||
15 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
18 | AUDIO_ENABLE = no # Audio output | ||
19 | |||
20 | LAYOUTS = 65_ansi 65_iso | ||
diff --git a/keyboards/draytronics/scarlet/config.h b/keyboards/draytronics/scarlet/config.h new file mode 100644 index 000000000..f7b50dee7 --- /dev/null +++ b/keyboards/draytronics/scarlet/config.h | |||
@@ -0,0 +1,96 @@ | |||
1 | /*Copyright 2020 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #include "config_common.h" | ||
22 | |||
23 | #define VENDOR_ID 0x4454 //DT for DrayTronics | ||
24 | #define PRODUCT_ID 0x5343 //SC for Scarlet | ||
25 | #define DEVICE_VER 0x0001 //Version 1 | ||
26 | #define MANUFACTURER Draytronics | ||
27 | #define PRODUCT SCARLET | ||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 5 | ||
30 | #define MATRIX_COLS 4 | ||
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 | |||
43 | #define MATRIX_ROW_PINS { A0, A1, A2, A3, A4 } | ||
44 | #define MATRIX_COL_PINS { A5, A6, A7, C7 } | ||
45 | #define UNUSED_PINS | ||
46 | |||
47 | /* COL2ROW, ROW2COL*/ | ||
48 | #define DIODE_DIRECTION COL2ROW | ||
49 | |||
50 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
51 | #define DEBOUNCE 5 | ||
52 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
53 | //#define MATRIX_HAS_GHOST | ||
54 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
55 | #define LOCKING_SUPPORT_ENABLE | ||
56 | /* Locking resynchronize hack */ | ||
57 | #define LOCKING_RESYNC_ENABLE | ||
58 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
59 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
60 | */ | ||
61 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
62 | /* | ||
63 | * Force NKRO | ||
64 | * | ||
65 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
66 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
67 | * makefile for this to work.) | ||
68 | * | ||
69 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
70 | * until the next keyboard reset. | ||
71 | * | ||
72 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
73 | * fully operational during normal computer usage. | ||
74 | * | ||
75 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
76 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
77 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
78 | * power-up. | ||
79 | * | ||
80 | */ | ||
81 | //#define FORCE_NKRO | ||
82 | /* | ||
83 | * Feature disable options | ||
84 | * These options are also useful to firmware size reduction. | ||
85 | */ | ||
86 | /* disable debug print */ | ||
87 | //#define NO_DEBUG | ||
88 | /* disable print */ | ||
89 | //#define NO_PRINT | ||
90 | /* disable action features */ | ||
91 | //#define NO_ACTION_LAYER | ||
92 | //#define NO_ACTION_TAPPING | ||
93 | //#define NO_ACTION_ONESHOT | ||
94 | /* disable these deprecated features by default */ | ||
95 | #define NO_ACTION_MACRO | ||
96 | #define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/draytronics/scarlet/info.json b/keyboards/draytronics/scarlet/info.json new file mode 100644 index 000000000..2e3f4f4b8 --- /dev/null +++ b/keyboards/draytronics/scarlet/info.json | |||
@@ -0,0 +1,32 @@ | |||
1 | { | ||
2 | "keyboard_name": "Draytronics SCARLET", | ||
3 | "url": "https://www.draytronics.co.uk/scarlet", | ||
4 | "maintainer": "ghostseven", | ||
5 | "layouts": { | ||
6 | "LAYOUT_numpad_5x4": { | ||
7 | "layout": [ | ||
8 | {"label":"Num Lock", "x":0, "y":0}, | ||
9 | {"label":"/", "x":1, "y":0}, | ||
10 | {"label":"*", "x":2, "y":0}, | ||
11 | {"label":"-", "x":3, "y":0}, | ||
12 | |||
13 | {"label":"7", "x":0, "y":1}, | ||
14 | {"label":"8", "x":1, "y":1}, | ||
15 | {"label":"9", "x":2, "y":1}, | ||
16 | |||
17 | {"label":"4", "x":0, "y":2}, | ||
18 | {"label":"5", "x":1, "y":2}, | ||
19 | {"label":"6", "x":2, "y":2}, | ||
20 | {"label":"+", "x":3, "y":1, "h":2}, | ||
21 | |||
22 | {"label":"1", "x":0, "y":3}, | ||
23 | {"label":"2", "x":1, "y":3}, | ||
24 | {"label":"3", "x":2, "y":3}, | ||
25 | |||
26 | {"label":"0", "x":0, "y":4, "w":2}, | ||
27 | {"label":".", "x":2, "y":4}, | ||
28 | {"label":"Enter", "x":3, "y":3, "h":2} | ||
29 | ] | ||
30 | } | ||
31 | } | ||
32 | } | ||
diff --git a/keyboards/draytronics/scarlet/keymaps/default/keymap.c b/keyboards/draytronics/scarlet/keymaps/default/keymap.c new file mode 100644 index 000000000..950ec6172 --- /dev/null +++ b/keyboards/draytronics/scarlet/keymaps/default/keymap.c | |||
@@ -0,0 +1,28 @@ | |||
1 | /*Copyright 2020 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include QMK_KEYBOARD_H | ||
20 | |||
21 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
22 | [0] = LAYOUT_numpad_5x4( | ||
23 | KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
24 | KC_P7, KC_P8, KC_P9, | ||
25 | KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
26 | KC_P1, KC_P2, KC_P3, | ||
27 | KC_P0, KC_PDOT, KC_PENT) | ||
28 | }; | ||
diff --git a/keyboards/draytronics/scarlet/keymaps/via/keymap.c b/keyboards/draytronics/scarlet/keymaps/via/keymap.c new file mode 100644 index 000000000..86169ff30 --- /dev/null +++ b/keyboards/draytronics/scarlet/keymaps/via/keymap.c | |||
@@ -0,0 +1,51 @@ | |||
1 | /*Copyright 2020 Blake Drayson / Draytronics | ||
2 | |||
3 | Special thanks to sirdicholas for the VIA support config files | ||
4 | |||
5 | VIA Design Config File | ||
6 | https://www.draytronics.co.uk/f_scarlet/draytronics_scarlet_via_config.json | ||
7 | |||
8 | Contact [email protected] | ||
9 | |||
10 | This program is free software: you can redistribute it and/or modify | ||
11 | it under the terms of the GNU General Public License as published by | ||
12 | the Free Software Foundation, either version 2 of the License, or | ||
13 | (at your option) any later version. | ||
14 | |||
15 | This program is distributed in the hope that it will be useful, | ||
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | GNU General Public License for more details. | ||
19 | |||
20 | You should have received a copy of the GNU General Public License | ||
21 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
22 | */ | ||
23 | |||
24 | #include QMK_KEYBOARD_H | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | [0] = LAYOUT_numpad_5x4( | ||
28 | KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
29 | KC_P7, KC_P8, KC_P9, | ||
30 | KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
31 | KC_P1, KC_P2, KC_P3, | ||
32 | KC_P0, KC_PDOT, KC_PENT), | ||
33 | [1] = LAYOUT_numpad_5x4( | ||
34 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
35 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
36 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
37 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
38 | KC_TRNS, KC_TRNS, KC_TRNS ), | ||
39 | [2] = LAYOUT_numpad_5x4( | ||
40 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
41 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
42 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
43 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
44 | KC_TRNS, KC_TRNS, KC_TRNS ), | ||
45 | [3] = LAYOUT_numpad_5x4( | ||
46 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
47 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
48 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
49 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
50 | KC_TRNS, KC_TRNS, KC_TRNS ), | ||
51 | }; | ||
diff --git a/keyboards/draytronics/scarlet/keymaps/via/rules.mk b/keyboards/draytronics/scarlet/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/draytronics/scarlet/keymaps/via/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/draytronics/scarlet/readme.md b/keyboards/draytronics/scarlet/readme.md new file mode 100644 index 000000000..a1ba2e330 --- /dev/null +++ b/keyboards/draytronics/scarlet/readme.md | |||
@@ -0,0 +1,21 @@ | |||
1 | # SCARLET | ||
2 | |||
3 |  | ||
4 | |||
5 | A open source 17 key numpad keyboard, designed to be easily built at home with through hole components. More info / kits / PCB designs available at [draytronics.co.uk/scarlet](https://draytronics.co.uk) | ||
6 | |||
7 | * Keyboard Maintainer: [Blake Drayson](https://github.com/ghostseven) | ||
8 | * Hardware Supported: SCARLET PCB / ATMega32A | ||
9 | * Hardware Availability: [draytronics.co.uk](https://draytronics.co.uk) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make draytronics/scarlet:default | ||
14 | |||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make draytronics/scarlet:default:flash | ||
18 | |||
19 | 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). | ||
20 | |||
21 | VIA design config file avaliable [here](https://www.draytronics.co.uk/f_scarlet/draytronics_scarlet_via_config.json) | ||
diff --git a/keyboards/draytronics/scarlet/rules.mk b/keyboards/draytronics/scarlet/rules.mk new file mode 100644 index 000000000..7c1e85cc4 --- /dev/null +++ b/keyboards/draytronics/scarlet/rules.mk | |||
@@ -0,0 +1,23 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32a | ||
3 | |||
4 | # Processor frequency | ||
5 | F_CPU = 16000000 | ||
6 | |||
7 | # Bootloader selection | ||
8 | BOOTLOADER = usbasploader | ||
9 | |||
10 | # Build Options | ||
11 | # change yes to no to disable | ||
12 | # | ||
13 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
14 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
15 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
16 | CONSOLE_ENABLE = no # Console for debug | ||
17 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
18 | NKRO_ENABLE = no # Enable N-Key Rollover | ||
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
21 | AUDIO_ENABLE = no # Audio output | ||
22 | |||
23 | LAYOUTS = numpad_5x4 | ||
diff --git a/keyboards/draytronics/scarlet/scarlet.c b/keyboards/draytronics/scarlet/scarlet.c new file mode 100644 index 000000000..fdcc811d5 --- /dev/null +++ b/keyboards/draytronics/scarlet/scarlet.c | |||
@@ -0,0 +1,19 @@ | |||
1 | /*Copyright 2020 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include "scarlet.h" | ||
diff --git a/keyboards/draytronics/scarlet/scarlet.h b/keyboards/draytronics/scarlet/scarlet.h new file mode 100644 index 000000000..d96f198db --- /dev/null +++ b/keyboards/draytronics/scarlet/scarlet.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /*Copyright 2020 Blake Drayson / Draytronics | ||
2 | |||
3 | Contact [email protected] | ||
4 | |||
5 | This program is free software: you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation, either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #pragma once | ||
20 | |||
21 | #include "quantum.h" | ||
22 | |||
23 | #define LAYOUT_numpad_5x4( \ | ||
24 | K00, K01, K02, K03, \ | ||
25 | K10, K11, K12, \ | ||
26 | K20, K21, K22, K13, \ | ||
27 | K30, K31, K32, \ | ||
28 | K40, K42, K33 \ | ||
29 | ) { \ | ||
30 | { K00, K01, K02, K03, }, \ | ||
31 | { K10, K11, K12, K13, }, \ | ||
32 | { K20, K21, K22, KC_NO, }, \ | ||
33 | { K30, K31, K32, K33, }, \ | ||
34 | { K40, KC_NO, K42, KC_NO, }, \ | ||
35 | } | ||