diff options
-rw-r--r-- | keyboards/runner3680/5x6_5x8/.noci | 0 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/5x6_5x8.c | 52 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/5x6_5x8.h | 41 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/config.h | 84 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/info.json | 85 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/default/config.h | 25 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/default/keymap.c | 71 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/derekhsu/config.h | 26 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/derekhsu/keymap.c | 60 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/derekhsu/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/jis/config.h | 25 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/jis/keymap.c | 72 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/via/config.h | 25 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/via/keymap.c | 71 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/keymaps/via/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/runner3680/5x6_5x8/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/runner3680/runner3680.h | 4 |
17 files changed, 646 insertions, 0 deletions
diff --git a/keyboards/runner3680/5x6_5x8/.noci b/keyboards/runner3680/5x6_5x8/.noci new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/.noci | |||
diff --git a/keyboards/runner3680/5x6_5x8/5x6_5x8.c b/keyboards/runner3680/5x6_5x8/5x6_5x8.c new file mode 100644 index 000000000..62597d006 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/5x6_5x8.c | |||
@@ -0,0 +1,52 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include "5x6_5x8.h" | ||
18 | |||
19 | #ifdef RGB_MATRIX_ENABLE | ||
20 | led_config_t g_led_config = { { | ||
21 | // Key Matrix to LED Index | ||
22 | { NO_LED, NO_LED, 5, 4, 3, 2, 1, 0 }, | ||
23 | { NO_LED, NO_LED, 6, 7, 8, 9, 10, 11 }, | ||
24 | { NO_LED, NO_LED, 17, 16, 15, 14, 13, 12 }, | ||
25 | { NO_LED, NO_LED, 18, 19, 20, 21, 22, 23 }, | ||
26 | { NO_LED, NO_LED, 29, 28, 27, 26, 25, 24 }, | ||
27 | { 37, 36, 35, 34, 33, 32, 31, 30 }, | ||
28 | { 38, 39, 40, 41, 42, 43, 44, 45 }, | ||
29 | { 53, 52, 51, 50, 49, 48, 47, 46 }, | ||
30 | { 54, 55, 56, 57, 58, 59, 60, 61 }, | ||
31 | { 69, 68, 67, 66, 65, 64, 63, 62 } | ||
32 | }, { | ||
33 | // LED Index to Physical Position | ||
34 | { 86, 0 }, { 69, 0 }, { 52, 0 }, { 34, 0 }, { 17, 0 }, { 0, 0 }, | ||
35 | { 0, 16 }, { 17, 16 }, { 34, 16 }, { 52, 16 }, { 69, 16 }, { 86, 16 }, | ||
36 | { 86, 32 }, { 69, 32 }, { 52, 32 }, { 34, 32 }, { 17, 32 }, { 0, 32 }, | ||
37 | { 0, 48 }, { 17, 48 }, { 34, 48 }, { 52, 48 }, { 69, 48 }, { 86, 48 }, | ||
38 | { 86, 64 }, { 69, 64 }, { 52, 64 }, { 34, 64 }, { 17, 64 }, { 0, 64 }, | ||
39 | { 103, 0 }, { 121, 0 }, { 138, 0 }, { 155, 0 }, { 172, 0 }, { 190, 0 }, { 207, 0 }, { 224, 0 }, | ||
40 | { 224, 16 }, { 207, 16 }, { 190, 16 }, { 172, 16 }, { 155, 16 }, { 138, 16 }, { 121, 16 }, { 103, 16 }, | ||
41 | { 103, 32 }, { 121, 32 }, { 138, 32 }, { 155, 32 }, { 172, 32 }, { 190, 32 }, { 207, 32 }, { 224, 32 }, | ||
42 | { 224, 48 }, { 207, 48 }, { 190, 48 }, { 172, 48 }, { 155, 48 }, { 138, 48 }, { 121, 48 }, { 103, 48 }, | ||
43 | { 103, 64 }, { 121, 64 }, { 138, 64 }, { 155, 64 }, { 172, 64 }, { 190, 64 }, { 207, 64 }, { 224, 64 } | ||
44 | }, { | ||
45 | // LED Index to Flag | ||
46 | LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, | ||
47 | LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, | ||
48 | LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, | ||
49 | LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, | ||
50 | LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL | ||
51 | } }; | ||
52 | #endif | ||
diff --git a/keyboards/runner3680/5x6_5x8/5x6_5x8.h b/keyboards/runner3680/5x6_5x8/5x6_5x8.h new file mode 100644 index 000000000..afceac0a8 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/5x6_5x8.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "runner3680.h" | ||
20 | |||
21 | #include "quantum.h" | ||
22 | |||
23 | #define LAYOUT( \ | ||
24 | L02, L03, L04, L05, L06, L07, R00, R01, R02, R03, R04, R05, R06, R07, \ | ||
25 | L12, L13, L14, L15, L16, L17, R10, R11, R12, R13, R14, R15, R16, R17, \ | ||
26 | L22, L23, L24, L25, L26, L27, R20, R21, R22, R23, R24, R25, R26, R27, \ | ||
27 | L32, L33, L34, L35, L36, L37, R30, R31, R32, R33, R34, R35, R36, R37, \ | ||
28 | L42, L43, L44, L45, L46, L47, R40, R41, R42, R43, R44, R45, R46, R47 \ | ||
29 | ) \ | ||
30 | { \ | ||
31 | { KC_NO, KC_NO, L02, L03, L04, L05, L06, L07 }, \ | ||
32 | { KC_NO, KC_NO, L12, L13, L14, L15, L16, L17 }, \ | ||
33 | { KC_NO, KC_NO, L22, L23, L24, L25, L26, L27 }, \ | ||
34 | { KC_NO, KC_NO, L32, L33, L34, L35, L36, L37 }, \ | ||
35 | { KC_NO, KC_NO, L42, L43, L44, L45, L46, L47 }, \ | ||
36 | { R07, R06, R05, R04, R03, R02, R01, R00 }, \ | ||
37 | { R17, R16, R15, R14, R13, R12, R11, R10 }, \ | ||
38 | { R27, R26, R25, R24, R23, R22, R21, R20 }, \ | ||
39 | { R37, R36, R35, R34, R33, R32, R31, R30 }, \ | ||
40 | { R47, R46, R45, R44, R43, R42, R41, R40 } \ | ||
41 | } | ||
diff --git a/keyboards/runner3680/5x6_5x8/config.h b/keyboards/runner3680/5x6_5x8/config.h new file mode 100644 index 000000000..815da2495 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/config.h | |||
@@ -0,0 +1,84 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | /* USB Device descriptor parameter */ | ||
20 | #define VENDOR_ID 0x3680 | ||
21 | #define PRODUCT_ID 0x5658 | ||
22 | #define DEVICE_VER 0x0005 | ||
23 | #define MANUFACTURER Omkbd | ||
24 | #define PRODUCT runner3680 | ||
25 | |||
26 | /* key matrix size */ | ||
27 | // Rows are doubled-up | ||
28 | #define MATRIX_ROWS 10 | ||
29 | #define MATRIX_COLS 8 | ||
30 | |||
31 | // wiring of each half | ||
32 | #define MATRIX_ROW_PINS { D4, C6, D7, E6, B4 } | ||
33 | #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2 ,B6 } | ||
34 | // #define MATRIX_COL_PINS { B6, B2, B3, B1, F7, F6, F5, F4 } //uncomment this line and comment line above if you need to reverse left-to-right key order | ||
35 | |||
36 | #define DIODE_DIRECTION COL2ROW | ||
37 | |||
38 | /* define tapping term */ | ||
39 | #define TAPPING_TERM 120 | ||
40 | |||
41 | /* define if matrix has ghost */ | ||
42 | //#define MATRIX_HAS_GHOST | ||
43 | |||
44 | /* Set 0 if debouncing isn't needed */ | ||
45 | #define DEBOUNCE 5 | ||
46 | |||
47 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
48 | #define LOCKING_SUPPORT_ENABLE | ||
49 | /* Locking resynchronize hack */ | ||
50 | #define LOCKING_RESYNC_ENABLE | ||
51 | |||
52 | /* ws2812 RGB LED */ | ||
53 | #define RGB_DI_PIN D3 | ||
54 | #ifdef RGBLIGHT_ENABLE | ||
55 | #define RGBLIGHT_EFFECT_BREATHING | ||
56 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
57 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
58 | #define RGBLIGHT_EFFECT_SNAKE | ||
59 | #define RGBLIGHT_EFFECT_KNIGHT | ||
60 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
61 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
62 | #define RGBLIGHT_EFFECT_RGB_TEST | ||
63 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
64 | #define RGBLIGHT_EFFECT_TWINKLE | ||
65 | #define RGBLED_NUM 70 | ||
66 | #define RGBLIGHT_SPLIT | ||
67 | #define RGBLED_SPLIT { 30, 40 } // Number of LEDs | ||
68 | #define RGBLIGHT_LIMIT_VAL 100 | ||
69 | #endif | ||
70 | #ifdef RGB_MATRIX_ENABLE | ||
71 | #define DRIVER_LED_TOTAL 70 | ||
72 | #define RGB_MATRIX_SPLIT { 30, 40 } // Number of LEDs | ||
73 | #endif | ||
74 | |||
75 | #define SOFT_SERIAL_PIN D2 | ||
76 | #define SELECT_SOFT_SERIAL_SPEED 1 | ||
77 | /*Sets the protocol speed when using serial communication*/ | ||
78 | //Speeds: | ||
79 | //0: about 189kbps (Experimental only) | ||
80 | //1: about 137kbps (default) | ||
81 | //2: about 75kbps | ||
82 | //3: about 39kbps | ||
83 | //4: about 26kbps | ||
84 | //5: about 20kbps | ||
diff --git a/keyboards/runner3680/5x6_5x8/info.json b/keyboards/runner3680/5x6_5x8/info.json new file mode 100644 index 000000000..e8fb4c092 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/info.json | |||
@@ -0,0 +1,85 @@ | |||
1 | { | ||
2 | "keyboard_name": "runner3680 5x6+5x8", | ||
3 | "url": "", | ||
4 | "maintainer": "omkbd", | ||
5 | "layouts": { | ||
6 | "LAYOUT": { | ||
7 | "layout": [ | ||
8 | {"x":0, "y":0}, | ||
9 | {"x":1, "y":0}, | ||
10 | {"x":2, "y":0}, | ||
11 | {"x":3, "y":0}, | ||
12 | {"x":4, "y":0}, | ||
13 | {"x":5, "y":0}, | ||
14 | {"x":7, "y":0}, | ||
15 | {"x":8, "y":0}, | ||
16 | {"x":9, "y":0}, | ||
17 | {"x":10, "y":0}, | ||
18 | {"x":11, "y":0}, | ||
19 | {"x":12, "y":0}, | ||
20 | {"x":13, "y":0}, | ||
21 | {"x":14, "y":0}, | ||
22 | |||
23 | {"x":0, "y":1}, | ||
24 | {"x":1, "y":1}, | ||
25 | {"x":2, "y":1}, | ||
26 | {"x":3, "y":1}, | ||
27 | {"x":4, "y":1}, | ||
28 | {"x":5, "y":1}, | ||
29 | {"x":7, "y":1}, | ||
30 | {"x":8, "y":1}, | ||
31 | {"x":9, "y":1}, | ||
32 | {"x":10, "y":1}, | ||
33 | {"x":11, "y":1}, | ||
34 | {"x":12, "y":1}, | ||
35 | {"x":13, "y":1}, | ||
36 | {"x":14, "y":1}, | ||
37 | |||
38 | {"x":0, "y":2}, | ||
39 | {"x":1, "y":2}, | ||
40 | {"x":2, "y":2}, | ||
41 | {"x":3, "y":2}, | ||
42 | {"x":4, "y":2}, | ||
43 | {"x":5, "y":2}, | ||
44 | {"x":7, "y":2}, | ||
45 | {"x":8, "y":2}, | ||
46 | {"x":9, "y":2}, | ||
47 | {"x":10, "y":2}, | ||
48 | {"x":11, "y":2}, | ||
49 | {"x":12, "y":2}, | ||
50 | {"x":13, "y":2}, | ||
51 | {"x":14, "y":2}, | ||
52 | |||
53 | {"x":0, "y":3}, | ||
54 | {"x":1, "y":3}, | ||
55 | {"x":2, "y":3}, | ||
56 | {"x":3, "y":3}, | ||
57 | {"x":4, "y":3}, | ||
58 | {"x":5, "y":3}, | ||
59 | {"x":7, "y":3}, | ||
60 | {"x":8, "y":3}, | ||
61 | {"x":9, "y":3}, | ||
62 | {"x":10, "y":3}, | ||
63 | {"x":11, "y":3}, | ||
64 | {"x":12, "y":3}, | ||
65 | {"x":13, "y":3}, | ||
66 | {"x":14, "y":3}, | ||
67 | |||
68 | {"x":0, "y":4}, | ||
69 | {"x":1, "y":4}, | ||
70 | {"x":2, "y":4}, | ||
71 | {"x":3, "y":4}, | ||
72 | {"x":4, "y":4}, | ||
73 | {"x":5, "y":4}, | ||
74 | {"x":7, "y":4}, | ||
75 | {"x":8, "y":4}, | ||
76 | {"x":9, "y":4}, | ||
77 | {"x":10, "y":4}, | ||
78 | {"x":11, "y":4}, | ||
79 | {"x":12, "y":4}, | ||
80 | {"x":13, "y":4}, | ||
81 | {"x":14, "y":4} | ||
82 | ] | ||
83 | } | ||
84 | } | ||
85 | } | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/default/config.h b/keyboards/runner3680/5x6_5x8/keymaps/default/config.h new file mode 100644 index 000000000..a21551bad --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/default/config.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | //#define USE_MATRIX_I2C | ||
20 | |||
21 | /* Select hand configuration */ | ||
22 | |||
23 | #define MASTER_LEFT | ||
24 | // #define MASTER_RIGHT | ||
25 | // #define EE_HANDS | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/default/keymap.c b/keyboards/runner3680/5x6_5x8/keymaps/default/keymap.c new file mode 100644 index 000000000..4dafb4b2a --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/default/keymap.c | |||
@@ -0,0 +1,71 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | enum layer_number { | ||
20 | _QWERTY = 0, | ||
21 | _ADJUST | ||
22 | }; | ||
23 | |||
24 | // Fillers to make layering more clear | ||
25 | #define EISU LALT(KC_GRV) | ||
26 | #define ADJUST MO(_ADJUST) | ||
27 | |||
28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
29 | |||
30 | /* QWERTY | ||
31 | * ,-----------------------------------------. ,--------------------------------------------------------. | ||
32 | * | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | = | Del | | ||
33 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
34 | * | Tab | Q | W | E | R | T | | Y | U | I | O | P | [ | ] | Bksp | | ||
35 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
36 | * | Esc | A | S | D | F | G | | H | J | K | L | ; | " | Enter| Enter| | ||
37 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
38 | * | Shift| Z | X | C | V | B | | N | M | , | . | / | \ | Up | Shift| | ||
39 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
40 | * | Ctrl | GUI | Alt | EISU | Del | Space| | Enter| Bksp | EISU | ESC |Adjust| Left | Down | Right| | ||
41 | * `-----------------------------------------' `-------------------------------------------------------' | ||
42 | */ | ||
43 | [_QWERTY] = LAYOUT( | ||
44 | KC_GRV, 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_DEL, | ||
45 | 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_BSPC, | ||
46 | KC_ESC, 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_ENT, | ||
47 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_BSLS, KC_UP, KC_RSFT, | ||
48 | KC_LCTL, KC_LGUI, KC_LALT, EISU, KC_DEL, KC_SPC, KC_ENT, KC_BSPC, EISU, KC_ESC, ADJUST, KC_LEFT, KC_DOWN, KC_RGHT | ||
49 | ), | ||
50 | |||
51 | /* Adjust | ||
52 | * ,-----------------------------------------. ,--------------------------------------------------------. | ||
53 | * | | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | | ||
54 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
55 | * | | | | | | | | | | | | | | | | | ||
56 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
57 | * | | TOG | HUI | SAI | VAI | | | | | | | | | | | | ||
58 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
59 | * | | MOD | HUD | SAD | VAD | | | | | | | | | | | | ||
60 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
61 | * | | | | | | | | | | | | | | | | | ||
62 | * `-----------------------------------------' `-------------------------------------------------------' | ||
63 | */ | ||
64 | [_ADJUST] = LAYOUT( | ||
65 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, | ||
66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
67 | _______, RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
68 | _______, RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
70 | ) | ||
71 | }; | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/config.h b/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/config.h new file mode 100644 index 000000000..818ea7d4a --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/config.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #define RGB_MATRIX_FRAMEBUFFER_EFFECTS | ||
20 | //#define USE_MATRIX_I2C | ||
21 | |||
22 | /* Select hand configuration */ | ||
23 | |||
24 | // #define MASTER_LEFT | ||
25 | // #define MASTER_RIGHT | ||
26 | #define EE_HANDS | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/keymap.c b/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/keymap.c new file mode 100644 index 000000000..2f8aed176 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/keymap.c | |||
@@ -0,0 +1,60 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | enum layer_number { | ||
20 | _QWERTY = 0, | ||
21 | _NAV, | ||
22 | _SYMBOL, | ||
23 | _MEDIA | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | |||
28 | [_QWERTY] = LAYOUT( | ||
29 | KC_GRV, 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, | ||
30 | 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, | ||
31 | KC_ESC, 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_ENT, | ||
32 | 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_DEL, | ||
33 | KC_LCTL, KC_LALT, KC_LGUI, MO(2), MO(1), KC_SPC, KC_SPC, MO(1), MO(2), KC_RGUI, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT | ||
34 | ), | ||
35 | |||
36 | [_NAV] = LAYOUT( | ||
37 | KC_ESC, 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, | ||
38 | KC_TRNS, KC_NO, KC_UP, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_UP, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
39 | KC_CAPS, KC_LEFT, KC_DOWN, KC_RGHT, KC_NO, KC_NO, KC_NO, KC_LEFT, KC_DOWN, KC_RGHT, KC_NO, KC_NO, KC_TRNS, KC_TRNS, | ||
40 | KC_TRNS, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_TRNS, KC_PGUP, KC_TRNS, | ||
41 | KC_TRNS, KC_TRNS, KC_TRNS, MO(3), KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, MO(3), KC_TRNS, KC_TRNS, KC_HOME, KC_PGDN, KC_END | ||
42 | ), | ||
43 | |||
44 | [_SYMBOL] = LAYOUT( | ||
45 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_UNDS, KC_PLUS, KC_BSPC, | ||
46 | KC_TRNS, KC_NO, KC_P7, KC_P8, KC_P9, KC_NO, KC_LPRN, KC_RPRN, KC_UNDS, KC_PLUS, KC_NO, KC_LCBR, KC_RCBR, KC_PIPE, | ||
47 | KC_ESC, KC_NO, KC_P4, KC_P5, KC_P6, KC_NO, KC_LCBR, KC_RCBR, KC_MINS, KC_EQL, KC_COLN, KC_DQUO, KC_TRNS, KC_TRNS, | ||
48 | KC_TRNS, KC_NO, KC_P1, KC_P2, KC_P3, KC_NO, KC_LBRC, KC_RBRC, KC_LT, KC_GT, KC_QUES, KC_TRNS, KC_UP, KC_TRNS, | ||
49 | KC_TRNS, KC_TRNS, KC_P0, KC_TRNS, MO(3), KC_TRNS, KC_TRNS, MO(3), KC_TRNS, KC_TRNS, KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT | ||
50 | ), | ||
51 | |||
52 | [_MEDIA] = LAYOUT( | ||
53 | KC_NO, KC_SLCK, KC_PAUS, KC_NO, KC_NO, RGB_VAD, RGB_VAI, KC_MRWD, KC_MPLY, KC_MFFD, KC_MUTE, KC_VOLD, KC_VOLU, KC_NO, | ||
54 | RGB_TOG, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, RGB_SPI, KC_NO, KC_NO, KC_NO, KC_NO, KC_MPLY, KC_NO, KC_NO, KC_NO, | ||
55 | KC_NO, RGB_RMOD, RGB_HUD, RGB_SAD, RGB_VAD, RGB_SPD, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
56 | KC_NO, RGB_M_P, RGB_M_B, RGB_M_SW, RGB_M_G, KC_NO, KC_NO, KC_MUTE, KC_NO, KC_NO, KC_NO, KC_NO, KC_VOLU, KC_NO, | ||
57 | KC_NO, KC_NO, KC_NO, KC_TRNS, KC_TRNS, KC_NO, KC_NO, KC_TRNS, KC_TRNS, KC_NO, KC_NO, KC_MRWD, KC_VOLD, KC_MFFD | ||
58 | ) | ||
59 | |||
60 | }; | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/rules.mk b/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/rules.mk new file mode 100644 index 000000000..8110dbaa1 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/derekhsu/rules.mk | |||
@@ -0,0 +1,3 @@ | |||
1 | RGB_MATRIX_ENABLE = yes | ||
2 | EXTRAKEY_ENABLE = yes | ||
3 | VIA_ENABLE = yes | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/jis/config.h b/keyboards/runner3680/5x6_5x8/keymaps/jis/config.h new file mode 100644 index 000000000..a21551bad --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/jis/config.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | //#define USE_MATRIX_I2C | ||
20 | |||
21 | /* Select hand configuration */ | ||
22 | |||
23 | #define MASTER_LEFT | ||
24 | // #define MASTER_RIGHT | ||
25 | // #define EE_HANDS | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/jis/keymap.c b/keyboards/runner3680/5x6_5x8/keymaps/jis/keymap.c new file mode 100644 index 000000000..463d84763 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/jis/keymap.c | |||
@@ -0,0 +1,72 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | #include "keymap_jp.h" | ||
19 | |||
20 | enum layer_number { | ||
21 | _QWERTY = 0, | ||
22 | _ADJUST | ||
23 | }; | ||
24 | |||
25 | // Fillers to make layering more clear | ||
26 | #define EISU LALT(KC_GRV) | ||
27 | #define ADJUST MO(_ADJUST) | ||
28 | |||
29 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
30 | |||
31 | /* QWERTY | ||
32 | * ,-----------------------------------------. ,--------------------------------------------------------. | ||
33 | * | EISU | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | ^ | \ | | ||
34 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
35 | * | Tab | Q | W | E | R | T | | Y | U | I | O | P | @ | [ | Bksp | | ||
36 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
37 | * | Esc | A | S | D | F | G | | H | J | K | L | : | ; | ] | Enter| | ||
38 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
39 | * | Shift| Z | X | C | V | B | | N | M | , | . | / | \ | Up | Shift| | ||
40 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
41 | * | Ctrl | GUI | Alt | MHEN | Del | Space| | Enter| Bksp | HENK |Adjust| F10 | Left | Down | Right| | ||
42 | * `-----------------------------------------' `-------------------------------------------------------' | ||
43 | */ | ||
44 | [_QWERTY] = LAYOUT( | ||
45 | JP_ZKHK, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, JP_CIRC, JP_YEN, | ||
46 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, JP_AT, JP_LBRC, KC_BSPC, | ||
47 | KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, JP_COLN, JP_RBRC, KC_ENT, | ||
48 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, JP_BSLS, KC_UP, KC_RSFT, | ||
49 | KC_LCTL, KC_LGUI, KC_LALT, KC_MHEN, KC_DEL, KC_SPC, KC_ENT, KC_BSPC, KC_HENK, ADJUST, KC_F10, KC_LEFT, KC_DOWN, KC_RGHT | ||
50 | ), | ||
51 | |||
52 | /* Adjust | ||
53 | * ,-----------------------------------------. ,--------------------------------------------------------. | ||
54 | * | | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | | ||
55 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
56 | * | | | | | | | | | | | | | | | | | ||
57 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
58 | * | | TOG | HUI | SAI | VAI | | | | | | | | | | | | ||
59 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
60 | * | | MOD | HUD | SAD | VAD | | | | | | | | | | | | ||
61 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
62 | * | | | | | | | | | | | | | | | | | ||
63 | * `-----------------------------------------' `-------------------------------------------------------' | ||
64 | */ | ||
65 | [_ADJUST] = LAYOUT( | ||
66 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, | ||
67 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
68 | _______, RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
69 | _______, RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
70 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
71 | ) | ||
72 | }; | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/via/config.h b/keyboards/runner3680/5x6_5x8/keymaps/via/config.h new file mode 100644 index 000000000..a21551bad --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/via/config.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | //#define USE_MATRIX_I2C | ||
20 | |||
21 | /* Select hand configuration */ | ||
22 | |||
23 | #define MASTER_LEFT | ||
24 | // #define MASTER_RIGHT | ||
25 | // #define EE_HANDS | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/via/keymap.c b/keyboards/runner3680/5x6_5x8/keymaps/via/keymap.c new file mode 100644 index 000000000..4dafb4b2a --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/via/keymap.c | |||
@@ -0,0 +1,71 @@ | |||
1 | /* Copyright 2021 omkbd | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | enum layer_number { | ||
20 | _QWERTY = 0, | ||
21 | _ADJUST | ||
22 | }; | ||
23 | |||
24 | // Fillers to make layering more clear | ||
25 | #define EISU LALT(KC_GRV) | ||
26 | #define ADJUST MO(_ADJUST) | ||
27 | |||
28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
29 | |||
30 | /* QWERTY | ||
31 | * ,-----------------------------------------. ,--------------------------------------------------------. | ||
32 | * | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | = | Del | | ||
33 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
34 | * | Tab | Q | W | E | R | T | | Y | U | I | O | P | [ | ] | Bksp | | ||
35 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
36 | * | Esc | A | S | D | F | G | | H | J | K | L | ; | " | Enter| Enter| | ||
37 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
38 | * | Shift| Z | X | C | V | B | | N | M | , | . | / | \ | Up | Shift| | ||
39 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
40 | * | Ctrl | GUI | Alt | EISU | Del | Space| | Enter| Bksp | EISU | ESC |Adjust| Left | Down | Right| | ||
41 | * `-----------------------------------------' `-------------------------------------------------------' | ||
42 | */ | ||
43 | [_QWERTY] = LAYOUT( | ||
44 | KC_GRV, 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_DEL, | ||
45 | 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_BSPC, | ||
46 | KC_ESC, 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_ENT, | ||
47 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_BSLS, KC_UP, KC_RSFT, | ||
48 | KC_LCTL, KC_LGUI, KC_LALT, EISU, KC_DEL, KC_SPC, KC_ENT, KC_BSPC, EISU, KC_ESC, ADJUST, KC_LEFT, KC_DOWN, KC_RGHT | ||
49 | ), | ||
50 | |||
51 | /* Adjust | ||
52 | * ,-----------------------------------------. ,--------------------------------------------------------. | ||
53 | * | | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 | F12 | | | ||
54 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
55 | * | | | | | | | | | | | | | | | | | ||
56 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
57 | * | | TOG | HUI | SAI | VAI | | | | | | | | | | | | ||
58 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
59 | * | | MOD | HUD | SAD | VAD | | | | | | | | | | | | ||
60 | * |------+------+------+------+------+------| |------+------+------+------+------+------+------+------| | ||
61 | * | | | | | | | | | | | | | | | | | ||
62 | * `-----------------------------------------' `-------------------------------------------------------' | ||
63 | */ | ||
64 | [_ADJUST] = LAYOUT( | ||
65 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, | ||
66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
67 | _______, RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
68 | _______, RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
70 | ) | ||
71 | }; | ||
diff --git a/keyboards/runner3680/5x6_5x8/keymaps/via/rules.mk b/keyboards/runner3680/5x6_5x8/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/keymaps/via/rules.mk | |||
@@ -0,0 +1 @@ | |||
VIA_ENABLE = yes | |||
diff --git a/keyboards/runner3680/5x6_5x8/rules.mk b/keyboards/runner3680/5x6_5x8/rules.mk new file mode 100644 index 000000000..32afd2163 --- /dev/null +++ b/keyboards/runner3680/5x6_5x8/rules.mk | |||
@@ -0,0 +1 @@ | |||
RGB_MATRIX_DRIVER = WS2812 | |||
diff --git a/keyboards/runner3680/runner3680.h b/keyboards/runner3680/runner3680.h index e7842b765..39a498e90 100644 --- a/keyboards/runner3680/runner3680.h +++ b/keyboards/runner3680/runner3680.h | |||
@@ -14,6 +14,10 @@ | |||
14 | #include "5x6.h" | 14 | #include "5x6.h" |
15 | #endif | 15 | #endif |
16 | 16 | ||
17 | #ifdef KEYBOARD_runner3680_5x6_5x8 | ||
18 | #include "5x6_5x8.h" | ||
19 | #endif | ||
20 | |||
17 | #ifdef KEYBOARD_runner3680_4x8 | 21 | #ifdef KEYBOARD_runner3680_4x8 |
18 | #include "4x8.h" | 22 | #include "4x8.h" |
19 | #endif | 23 | #endif |