diff options
Diffstat (limited to 'keyboards/mechlovin')
| -rw-r--r-- | keyboards/mechlovin/infinityce/config.h | 49 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/infinityce.c | 42 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/infinityce.h | 67 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/info.json | 293 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/keymaps/default/keymap.c | 29 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/keymaps/via/keymap.c | 53 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/keymaps/via/readme.md | 3 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/readme.md | 19 | ||||
| -rw-r--r-- | keyboards/mechlovin/infinityce/rules.mk | 32 |
11 files changed, 589 insertions, 0 deletions
diff --git a/keyboards/mechlovin/infinityce/config.h b/keyboards/mechlovin/infinityce/config.h new file mode 100644 index 000000000..ff10e183d --- /dev/null +++ b/keyboards/mechlovin/infinityce/config.h | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 mechlovin | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | /* USB Device descriptor parameter */ | ||
| 23 | #define VENDOR_ID 0x4D4C // ML-Mechlovin | ||
| 24 | #define PRODUCT_ID 0x8801 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Team.Mechlovin | ||
| 27 | #define PRODUCT Infinity CE | ||
| 28 | #define DESCRIPTION Team.Mechlovin Infinity CE | ||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 6 | ||
| 31 | #define MATRIX_COLS 17 | ||
| 32 | |||
| 33 | #define MATRIX_ROW_PINS { D7, D6, B6, B1, C6, C7 } | ||
| 34 | #define MATRIX_COL_PINS { B5, B4, B0, D5, D4, D1, D0, E6, F7, F6, F5, F4, F1, F0, B2, D3, D2} | ||
| 35 | |||
| 36 | /* COL2ROW, ROW2COL*/ | ||
| 37 | #define DIODE_DIRECTION COL2ROW | ||
| 38 | |||
| 39 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 40 | #define DEBOUNCE 5 | ||
| 41 | |||
| 42 | #define BACKLIGHT_PIN B7 | ||
| 43 | #define BACKLIGHT_BREATHING | ||
| 44 | #define BACKLIGHT_LEVELS 3 | ||
| 45 | |||
| 46 | #define RGB_DI_PIN E2 | ||
| 47 | #define RGBLED_NUM 31 | ||
| 48 | #define RGBLIGHT_LIMIT_VAL 255 | ||
| 49 | #define RGBLIGHT_ANIMATIONS \ No newline at end of file | ||
diff --git a/keyboards/mechlovin/infinityce/infinityce.c b/keyboards/mechlovin/infinityce/infinityce.c new file mode 100644 index 000000000..5d75b480b --- /dev/null +++ b/keyboards/mechlovin/infinityce/infinityce.c | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* Copyright 2020 mechlovin | ||
| 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 "infinityce.h" | ||
| 18 | |||
| 19 | void matrix_init_kb(void) { | ||
| 20 | // put your keyboard start-up code here | ||
| 21 | // runs once when the firmware starts up | ||
| 22 | matrix_init_user(); | ||
| 23 | led_init_ports(); | ||
| 24 | }; | ||
| 25 | |||
| 26 | void led_init_ports(void) { | ||
| 27 | // * Set our LED pins as output | ||
| 28 | setPinOutput(B3); | ||
| 29 | } | ||
| 30 | bool led_update_kb(led_t led_state) { | ||
| 31 | bool res = led_update_user(led_state); | ||
| 32 | if(res) { | ||
| 33 | writePin(B3, led_state.caps_lock); | ||
| 34 | rgblight_set_effect_range(1, 30); | ||
| 35 | if (led_state.scroll_lock) { | ||
| 36 | rgblight_setrgb_at(255, 255, 255, 0); | ||
| 37 | } else { | ||
| 38 | rgblight_setrgb_at(0, 0, 0, 0); | ||
| 39 | } | ||
| 40 | } | ||
| 41 | return res; | ||
| 42 | } \ No newline at end of file | ||
diff --git a/keyboards/mechlovin/infinityce/infinityce.h b/keyboards/mechlovin/infinityce/infinityce.h new file mode 100644 index 000000000..26a8f3749 --- /dev/null +++ b/keyboards/mechlovin/infinityce/infinityce.h | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | /* Copyright 2020 mechlovin | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | #include "quantum.h" | ||
| 20 | |||
| 21 | #define LAYOUT_all( \ | ||
| 22 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G, \ | ||
| 23 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G, \ | ||
| 24 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, K2F, K2G, \ | ||
| 25 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \ | ||
| 26 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4G, \ | ||
| 27 | K50, K51, K52, K56, K5A, K5B, K5C, K5D, K5E, K5F, K5G \ | ||
| 28 | ) { \ | ||
| 29 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G }, \ | ||
| 30 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G }, \ | ||
| 31 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, K2F, K2G }, \ | ||
| 32 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, KC_NO, KC_NO, KC_NO }, \ | ||
| 33 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, KC_NO, K4G, KC_NO }, \ | ||
| 34 | { K50, K51, K52, KC_NO, KC_NO, KC_NO, K56, KC_NO, KC_NO, KC_NO, K5A, K5B, K5C, K5D, K5E, K5F, K5G }, \ | ||
| 35 | } | ||
| 36 | |||
| 37 | #define LAYOUT_ansi( \ | ||
| 38 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G, \ | ||
| 39 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G, \ | ||
| 40 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, K2F, K2G, \ | ||
| 41 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3D, \ | ||
| 42 | K40, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4D, K4G, \ | ||
| 43 | K50, K51, K52, K56, K5A, K5B, K5C, K5D, K5E, K5F, K5G \ | ||
| 44 | ) { \ | ||
| 45 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G }, \ | ||
| 46 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G }, \ | ||
| 47 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, K2F, K2G }, \ | ||
| 48 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, KC_NO, K3D, KC_NO, KC_NO, KC_NO }, \ | ||
| 49 | { K40, KC_NO, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, KC_NO, K4D, KC_NO, K4G, KC_NO }, \ | ||
| 50 | { K50, K51, K52, KC_NO, KC_NO, KC_NO, K56, KC_NO, KC_NO, KC_NO, K5A, K5B, K5C, K5D, K5E, K5F, K5G }, \ | ||
| 51 | } | ||
| 52 | |||
| 53 | #define LAYOUT_iso( \ | ||
| 54 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G, \ | ||
| 55 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G, \ | ||
| 56 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2E, K2F, K2G, \ | ||
| 57 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \ | ||
| 58 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4D, K4G, \ | ||
| 59 | K50, K51, K52, K56, K5A, K5B, K5C, K5D, K5E, K5F, K5G \ | ||
| 60 | ) { \ | ||
| 61 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G }, \ | ||
| 62 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G }, \ | ||
| 63 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, KC_NO, K2E, K2F, K2G }, \ | ||
| 64 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, KC_NO, KC_NO, KC_NO }, \ | ||
| 65 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, KC_NO, K4D, KC_NO, K4G, KC_NO }, \ | ||
| 66 | { K50, K51, K52, KC_NO, KC_NO, KC_NO, K56, KC_NO, KC_NO, KC_NO, K5A, K5B, K5C, K5D, K5E, K5F, K5G }, \ | ||
| 67 | } | ||
diff --git a/keyboards/mechlovin/infinityce/info.json b/keyboards/mechlovin/infinityce/info.json new file mode 100644 index 000000000..61801e991 --- /dev/null +++ b/keyboards/mechlovin/infinityce/info.json | |||
| @@ -0,0 +1,293 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Infinity CE", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Team Mechlovin'", | ||
| 5 | "width": 18.25, | ||
| 6 | "height": 6.25, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_all": { | ||
| 9 | "key_count": 91, | ||
| 10 | "layout": [ | ||
| 11 | {"label":"K00 (B0,B6)", "x":0, "y":0}, | ||
| 12 | {"label":"K01 (B0,B7)", "x":1.25, "y":0}, | ||
| 13 | {"label":"K02 (B0,C0)", "x":2.25, "y":0}, | ||
| 14 | {"label":"K03 (B0,C1)", "x":3.25, "y":0}, | ||
| 15 | {"label":"K04 (B0,C2)", "x":4.25, "y":0}, | ||
| 16 | {"label":"K05 (B0,C3)", "x":5.5, "y":0}, | ||
| 17 | {"label":"K06 (B0,C4)", "x":6.5, "y":0}, | ||
| 18 | {"label":"K07 (B0,C5)", "x":7.5, "y":0}, | ||
| 19 | {"label":"K08 (B0,C6)", "x":8.5, "y":0}, | ||
| 20 | {"label":"K09 (B0,C7)", "x":9.75, "y":0}, | ||
| 21 | {"label":"K0A (B0,D0)", "x":10.75, "y":0}, | ||
| 22 | {"label":"K0B (B0,D1)", "x":11.75, "y":0}, | ||
| 23 | {"label":"K0C (B0,D2)", "x":12.75, "y":0}, | ||
| 24 | {"label":"K0D (B0,D3)", "x":14, "y":0}, | ||
| 25 | {"label":"K0E (B0,D4)", "x":15.25, "y":0}, | ||
| 26 | {"label":"K0F (B0,D5)", "x":16.25, "y":0}, | ||
| 27 | {"label":"K0G (B0,D6)", "x":17.25, "y":0}, | ||
| 28 | {"label":"K10 (B1,B6)", "x":0, "y":1.25}, | ||
| 29 | {"label":"K11 (B1,B7)", "x":1, "y":1.25}, | ||
| 30 | {"label":"K12 (B1,C0)", "x":2, "y":1.25}, | ||
| 31 | {"label":"K13 (B1,C1)", "x":3, "y":1.25}, | ||
| 32 | {"label":"K14 (B1,C2)", "x":4, "y":1.25}, | ||
| 33 | {"label":"K15 (B1,C3)", "x":5, "y":1.25}, | ||
| 34 | {"label":"K16 (B1,C4)", "x":6, "y":1.25}, | ||
| 35 | {"label":"K17 (B1,C5)", "x":7, "y":1.25}, | ||
| 36 | {"label":"K18 (B1,C6)", "x":8, "y":1.25}, | ||
| 37 | {"label":"K19 (B1,C7)", "x":9, "y":1.25}, | ||
| 38 | {"label":"K1A (B1,D0)", "x":10, "y":1.25}, | ||
| 39 | {"label":"K1B (B1,D1)", "x":11, "y":1.25}, | ||
| 40 | {"label":"K1C (B1,D2)", "x":12, "y":1.25}, | ||
| 41 | {"label":"K1D (B1,D3)", "x":13, "y":1.25, "w":2}, | ||
| 42 | {"label":"K1E (B1,D4)", "x":15.25, "y":1.25}, | ||
| 43 | {"label":"K1F (B1,D5)", "x":16.25, "y":1.25}, | ||
| 44 | {"label":"K1G (B1,D6)", "x":17.25, "y":1.25}, | ||
| 45 | {"label":"K20 (B2,B6)", "x":0, "y":2.25, "w":1.5}, | ||
| 46 | {"label":"K21 (B2,B7)", "x":1.5, "y":2.25}, | ||
| 47 | {"label":"K22 (B2,C0)", "x":2.5, "y":2.25}, | ||
| 48 | {"label":"K23 (B2,C1)", "x":3.5, "y":2.25}, | ||
| 49 | {"label":"K24 (B2,C2)", "x":4.5, "y":2.25}, | ||
| 50 | {"label":"K25 (B2,C3)", "x":5.5, "y":2.25}, | ||
| 51 | {"label":"K26 (B2,C4)", "x":6.5, "y":2.25}, | ||
| 52 | {"label":"K27 (B2,C5)", "x":7.5, "y":2.25}, | ||
| 53 | {"label":"K28 (B2,C6)", "x":8.5, "y":2.25}, | ||
| 54 | {"label":"K29 (B2,C7)", "x":9.5, "y":2.25}, | ||
| 55 | {"label":"K2A (B2,D0)", "x":10.5, "y":2.25}, | ||
| 56 | {"label":"K2B (B2,D1)", "x":11.5, "y":2.25}, | ||
| 57 | {"label":"K2C (B2,D2)", "x":12.5, "y":2.25}, | ||
| 58 | {"label":"K2D (B2,D3)", "x":13.5, "y":2.25, "w":1.5}, | ||
| 59 | {"label":"K2E (B2,D4)", "x":15.25, "y":2.25}, | ||
| 60 | {"label":"K2F (B2,D5)", "x":16.25, "y":2.25}, | ||
| 61 | {"label":"K2G (B2,D6)", "x":17.25, "y":2.25}, | ||
| 62 | {"label":"K30 (B3,B6)", "x":0, "y":3.25, "w":1.75}, | ||
| 63 | {"label":"K31 (B3,B7)", "x":1.75, "y":3.25}, | ||
| 64 | {"label":"K32 (B3,C0)", "x":2.75, "y":3.25}, | ||
| 65 | {"label":"K33 (B3,C1)", "x":3.75, "y":3.25}, | ||
| 66 | {"label":"K34 (B3,C2)", "x":4.75, "y":3.25}, | ||
| 67 | {"label":"K35 (B3,C3)", "x":5.75, "y":3.25}, | ||
| 68 | {"label":"K36 (B3,C4)", "x":6.75, "y":3.25}, | ||
| 69 | {"label":"K37 (B3,C5)", "x":7.75, "y":3.25}, | ||
| 70 | {"label":"K38 (B3,C6)", "x":8.75, "y":3.25}, | ||
| 71 | {"label":"K39 (B3,C7)", "x":9.75, "y":3.25}, | ||
| 72 | {"label":"K3A (B3,D0)", "x":10.75, "y":3.25}, | ||
| 73 | {"label":"K3B (B3,D1)", "x":11.75, "y":3.25}, | ||
| 74 | {"label":"K3C (B3,D2)", "x":12.75, "y":3.25}, | ||
| 75 | {"label":"K3D (B3,D3)", "x":13.75, "y":3.25, "w":1.25}, | ||
| 76 | {"label":"K40 (B4,B6)", "x":0, "y":4.25, "w":1.25}, | ||
| 77 | {"label":"K41 (B4,B7)", "x":1.25, "y":4.25}, | ||
| 78 | {"label":"K42 (B4,C0)", "x":2.25, "y":4.25}, | ||
| 79 | {"label":"K43 (B4,C1)", "x":3.25, "y":4.25}, | ||
| 80 | {"label":"K44 (B4,C2)", "x":4.25, "y":4.25}, | ||
| 81 | {"label":"K45 (B4,C3)", "x":5.25, "y":4.25}, | ||
| 82 | {"label":"K46 (B4,C4)", "x":6.25, "y":4.25}, | ||
| 83 | {"label":"K47 (B4,C5)", "x":7.25, "y":4.25}, | ||
| 84 | {"label":"K48 (B4,C6)", "x":8.25, "y":4.25}, | ||
| 85 | {"label":"K49 (B4,C7)", "x":9.25, "y":4.25}, | ||
| 86 | {"label":"K4A (B4,D0)", "x":10.25, "y":4.25}, | ||
| 87 | {"label":"K4B (B4,D1)", "x":11.25, "y":4.25}, | ||
| 88 | {"label":"K4C (B4,D2)", "x":12.25, "y":4.25, "w":1.75}, | ||
| 89 | {"label":"K4D (B4,D3)", "x":14, "y":4.25}, | ||
| 90 | {"label":"K4F (B4,D5)", "x":16.25, "y":4.25}, | ||
| 91 | {"label":"K50 (B5,B6)", "x":0, "y":5.25, "w":1.25}, | ||
| 92 | {"label":"K51 (B5,B7)", "x":1.25, "y":5.25, "w":1.25}, | ||
| 93 | {"label":"K52 (B5,C0)", "x":2.5, "y":5.25, "w":1.25}, | ||
| 94 | {"label":"K56 (B5,C4)", "x":3.75, "y":5.25, "w":6.25}, | ||
| 95 | {"label":"K5A (B5,D0)", "x":10, "y":5.25, "w":1.25}, | ||
| 96 | {"label":"K5B (B5,D1)", "x":11.25, "y":5.25, "w":1.25}, | ||
| 97 | {"label":"K5C (B5,D2)", "x":12.5, "y":5.25, "w":1.25}, | ||
| 98 | {"label":"K5D (B5,D3)", "x":13.75, "y":5.25, "w":1.25}, | ||
| 99 | {"label":"K5E (B5,D4)", "x":15.25, "y":5.25}, | ||
| 100 | {"label":"K5F (B5,D5)", "x":16.25, "y":5.25}, | ||
| 101 | {"label":"K5G (B5,D6)", "x":17.25, "y":5.25} | ||
| 102 | ] | ||
| 103 | }, | ||
| 104 | "LAYOUT_ansi": { | ||
| 105 | "key_count": 88, | ||
| 106 | "layout": [ | ||
| 107 | {"label":"K00 (B0,B6)", "x":0, "y":0}, | ||
| 108 | {"label":"K01 (B0,B7)", "x":1.25, "y":0}, | ||
| 109 | {"label":"K02 (B0,C0)", "x":2.25, "y":0}, | ||
| 110 | {"label":"K03 (B0,C1)", "x":3.25, "y":0}, | ||
| 111 | {"label":"K04 (B0,C2)", "x":4.25, "y":0}, | ||
| 112 | {"label":"K05 (B0,C3)", "x":5.5, "y":0}, | ||
| 113 | {"label":"K06 (B0,C4)", "x":6.5, "y":0}, | ||
| 114 | {"label":"K07 (B0,C5)", "x":7.5, "y":0}, | ||
| 115 | {"label":"K08 (B0,C6)", "x":8.5, "y":0}, | ||
| 116 | {"label":"K09 (B0,C7)", "x":9.75, "y":0}, | ||
| 117 | {"label":"K0A (B0,D0)", "x":10.75, "y":0}, | ||
| 118 | {"label":"K0B (B0,D1)", "x":11.75, "y":0}, | ||
| 119 | {"label":"K0C (B0,D2)", "x":12.75, "y":0}, | ||
| 120 | {"label":"K0D (B0,D3)", "x":14, "y":0}, | ||
| 121 | {"label":"K0E (B0,D4)", "x":15.25, "y":0}, | ||
| 122 | {"label":"K0F (B0,D5)", "x":16.25, "y":0}, | ||
| 123 | {"label":"K0G (B0,D6)", "x":17.25, "y":0}, | ||
| 124 | {"label":"K10 (B1,B6)", "x":0, "y":1.25}, | ||
| 125 | {"label":"K11 (B1,B7)", "x":1, "y":1.25}, | ||
| 126 | {"label":"K12 (B1,C0)", "x":2, "y":1.25}, | ||
| 127 | {"label":"K13 (B1,C1)", "x":3, "y":1.25}, | ||
| 128 | {"label":"K14 (B1,C2)", "x":4, "y":1.25}, | ||
| 129 | {"label":"K15 (B1,C3)", "x":5, "y":1.25}, | ||
| 130 | {"label":"K16 (B1,C4)", "x":6, "y":1.25}, | ||
| 131 | {"label":"K17 (B1,C5)", "x":7, "y":1.25}, | ||
| 132 | {"label":"K18 (B1,C6)", "x":8, "y":1.25}, | ||
| 133 | {"label":"K19 (B1,C7)", "x":9, "y":1.25}, | ||
| 134 | {"label":"K1A (B1,D0)", "x":10, "y":1.25}, | ||
| 135 | {"label":"K1B (B1,D1)", "x":11, "y":1.25}, | ||
| 136 | {"label":"K1C (B1,D2)", "x":12, "y":1.25}, | ||
| 137 | {"label":"K1D (B1,D3)", "x":13, "y":1.25, "w":2}, | ||
| 138 | {"label":"K1E (B1,D4)", "x":15.25, "y":1.25}, | ||
| 139 | {"label":"K1F (B1,D5)", "x":16.25, "y":1.25}, | ||
| 140 | {"label":"K1G (B1,D6)", "x":17.25, "y":1.25}, | ||
| 141 | {"label":"K20 (B2,B6)", "x":0, "y":2.25, "w":1.5}, | ||
| 142 | {"label":"K21 (B2,B7)", "x":1.5, "y":2.25}, | ||
| 143 | {"label":"K22 (B2,C0)", "x":2.5, "y":2.25}, | ||
| 144 | {"label":"K23 (B2,C1)", "x":3.5, "y":2.25}, | ||
| 145 | {"label":"K24 (B2,C2)", "x":4.5, "y":2.25}, | ||
| 146 | {"label":"K25 (B2,C3)", "x":5.5, "y":2.25}, | ||
| 147 | {"label":"K26 (B2,C4)", "x":6.5, "y":2.25}, | ||
| 148 | {"label":"K27 (B2,C5)", "x":7.5, "y":2.25}, | ||
| 149 | {"label":"K28 (B2,C6)", "x":8.5, "y":2.25}, | ||
| 150 | {"label":"K29 (B2,C7)", "x":9.5, "y":2.25}, | ||
| 151 | {"label":"K2A (B2,D0)", "x":10.5, "y":2.25}, | ||
| 152 | {"label":"K2B (B2,D1)", "x":11.5, "y":2.25}, | ||
| 153 | {"label":"K2C (B2,D2)", "x":12.5, "y":2.25}, | ||
| 154 | {"label":"K2D (B2,D3)", "x":13.5, "y":2.25, "w":1.5}, | ||
| 155 | {"label":"K2E (B2,D4)", "x":15.25, "y":2.25}, | ||
| 156 | {"label":"K2F (B2,D5)", "x":16.25, "y":2.25}, | ||
| 157 | {"label":"K2G (B2,D6)", "x":17.25, "y":2.25}, | ||
| 158 | {"label":"K30 (B3,B6)", "x":0, "y":3.25, "w":1.75}, | ||
| 159 | {"label":"K31 (B3,B7)", "x":1.75, "y":3.25}, | ||
| 160 | {"label":"K32 (B3,C0)", "x":2.75, "y":3.25}, | ||
| 161 | {"label":"K33 (B3,C1)", "x":3.75, "y":3.25}, | ||
| 162 | {"label":"K34 (B3,C2)", "x":4.75, "y":3.25}, | ||
| 163 | {"label":"K35 (B3,C3)", "x":5.75, "y":3.25}, | ||
| 164 | {"label":"K36 (B3,C4)", "x":6.75, "y":3.25}, | ||
| 165 | {"label":"K37 (B3,C5)", "x":7.75, "y":3.25}, | ||
| 166 | {"label":"K38 (B3,C6)", "x":8.75, "y":3.25}, | ||
| 167 | {"label":"K39 (B3,C7)", "x":9.75, "y":3.25}, | ||
| 168 | {"label":"K3A (B3,D0)", "x":10.75, "y":3.25}, | ||
| 169 | {"label":"K3B (B3,D1)", "x":11.75, "y":3.25}, | ||
| 170 | {"label":"K3D (B3,D3)", "x":12.75, "y":3.25, "w":2.25}, | ||
| 171 | {"label":"K40 (B4,B6)", "x":0, "y":4.25, "w":2.25}, | ||
| 172 | {"label":"K42 (B4,C0)", "x":2.25, "y":4.25}, | ||
| 173 | {"label":"K43 (B4,C1)", "x":3.25, "y":4.25}, | ||
| 174 | {"label":"K44 (B4,C2)", "x":4.25, "y":4.25}, | ||
| 175 | {"label":"K45 (B4,C3)", "x":5.25, "y":4.25}, | ||
| 176 | {"label":"K46 (B4,C4)", "x":6.25, "y":4.25}, | ||
| 177 | {"label":"K47 (B4,C5)", "x":7.25, "y":4.25}, | ||
| 178 | {"label":"K48 (B4,C6)", "x":8.25, "y":4.25}, | ||
| 179 | {"label":"K49 (B4,C7)", "x":9.25, "y":4.25}, | ||
| 180 | {"label":"K4A (B4,D0)", "x":10.25, "y":4.25}, | ||
| 181 | {"label":"K4B (B4,D1)", "x":11.25, "y":4.25}, | ||
| 182 | {"label":"K4D (B4,D3)", "x":12.25, "y":4.25, "w":2.75}, | ||
| 183 | {"label":"K4F (B4,D5)", "x":16.25, "y":4.25}, | ||
| 184 | {"label":"K50 (B5,B6)", "x":0, "y":5.25, "w":1.25}, | ||
| 185 | {"label":"K51 (B5,B7)", "x":1.25, "y":5.25, "w":1.25}, | ||
| 186 | {"label":"K52 (B5,C0)", "x":2.5, "y":5.25, "w":1.25}, | ||
| 187 | {"label":"K56 (B5,C4)", "x":3.75, "y":5.25, "w":6.25}, | ||
| 188 | {"label":"K5A (B5,D0)", "x":10, "y":5.25, "w":1.25}, | ||
| 189 | {"label":"K5B (B5,D1)", "x":11.25, "y":5.25, "w":1.25}, | ||
| 190 | {"label":"K5C (B5,D2)", "x":12.5, "y":5.25, "w":1.25}, | ||
| 191 | {"label":"K5D (B5,D3)", "x":13.75, "y":5.25, "w":1.25}, | ||
| 192 | {"label":"K5E (B5,D4)", "x":15.25, "y":5.25}, | ||
| 193 | {"label":"K5F (B5,D5)", "x":16.25, "y":5.25}, | ||
| 194 | {"label":"K5G (B5,D6)", "x":17.25, "y":5.25} | ||
| 195 | ] | ||
| 196 | }, | ||
| 197 | "LAYOUT_iso": { | ||
| 198 | "key_count": 89, | ||
| 199 | "layout": [ | ||
| 200 | {"label":"K00 (B0,B6)", "x":0, "y":0}, | ||
| 201 | {"label":"K01 (B0,B7)", "x":1.25, "y":0}, | ||
| 202 | {"label":"K02 (B0,C0)", "x":2.25, "y":0}, | ||
| 203 | {"label":"K03 (B0,C1)", "x":3.25, "y":0}, | ||
| 204 | {"label":"K04 (B0,C2)", "x":4.25, "y":0}, | ||
| 205 | {"label":"K05 (B0,C3)", "x":5.5, "y":0}, | ||
| 206 | {"label":"K06 (B0,C4)", "x":6.5, "y":0}, | ||
| 207 | {"label":"K07 (B0,C5)", "x":7.5, "y":0}, | ||
| 208 | {"label":"K08 (B0,C6)", "x":8.5, "y":0}, | ||
| 209 | {"label":"K09 (B0,C7)", "x":9.75, "y":0}, | ||
| 210 | {"label":"K0A (B0,D0)", "x":10.75, "y":0}, | ||
| 211 | {"label":"K0B (B0,D1)", "x":11.75, "y":0}, | ||
| 212 | {"label":"K0C (B0,D2)", "x":12.75, "y":0}, | ||
| 213 | {"label":"K0D (B0,D3)", "x":14, "y":0}, | ||
| 214 | {"label":"K0E (B0,D4)", "x":15.25, "y":0}, | ||
| 215 | {"label":"K0F (B0,D5)", "x":16.25, "y":0}, | ||
| 216 | {"label":"K0G (B0,D6)", "x":17.25, "y":0}, | ||
| 217 | {"label":"K10 (B1,B6)", "x":0, "y":1.25}, | ||
| 218 | {"label":"K11 (B1,B7)", "x":1, "y":1.25}, | ||
| 219 | {"label":"K12 (B1,C0)", "x":2, "y":1.25}, | ||
| 220 | {"label":"K13 (B1,C1)", "x":3, "y":1.25}, | ||
| 221 | {"label":"K14 (B1,C2)", "x":4, "y":1.25}, | ||
| 222 | {"label":"K15 (B1,C3)", "x":5, "y":1.25}, | ||
| 223 | {"label":"K16 (B1,C4)", "x":6, "y":1.25}, | ||
| 224 | {"label":"K17 (B1,C5)", "x":7, "y":1.25}, | ||
| 225 | {"label":"K18 (B1,C6)", "x":8, "y":1.25}, | ||
| 226 | {"label":"K19 (B1,C7)", "x":9, "y":1.25}, | ||
| 227 | {"label":"K1A (B1,D0)", "x":10, "y":1.25}, | ||
| 228 | {"label":"K1B (B1,D1)", "x":11, "y":1.25}, | ||
| 229 | {"label":"K1C (B1,D2)", "x":12, "y":1.25}, | ||
| 230 | {"label":"K1D (B1,D3)", "x":13, "y":1.25, "w":2}, | ||
| 231 | {"label":"K1E (B1,D4)", "x":15.25, "y":1.25}, | ||
| 232 | {"label":"K1F (B1,D5)", "x":16.25, "y":1.25}, | ||
| 233 | {"label":"K1G (B1,D6)", "x":17.25, "y":1.25}, | ||
| 234 | {"label":"K20 (B2,B6)", "x":0, "y":2.25, "w":1.5}, | ||
| 235 | {"label":"K21 (B2,B7)", "x":1.5, "y":2.25}, | ||
| 236 | {"label":"K22 (B2,C0)", "x":2.5, "y":2.25}, | ||
| 237 | {"label":"K23 (B2,C1)", "x":3.5, "y":2.25}, | ||
| 238 | {"label":"K24 (B2,C2)", "x":4.5, "y":2.25}, | ||
| 239 | {"label":"K25 (B2,C3)", "x":5.5, "y":2.25}, | ||
| 240 | {"label":"K26 (B2,C4)", "x":6.5, "y":2.25}, | ||
| 241 | {"label":"K27 (B2,C5)", "x":7.5, "y":2.25}, | ||
| 242 | {"label":"K28 (B2,C6)", "x":8.5, "y":2.25}, | ||
| 243 | {"label":"K29 (B2,C7)", "x":9.5, "y":2.25}, | ||
| 244 | {"label":"K2A (B2,D0)", "x":10.5, "y":2.25}, | ||
| 245 | {"label":"K2B (B2,D1)", "x":11.5, "y":2.25}, | ||
| 246 | {"label":"K2C (B2,D2)", "x":12.5, "y":2.25}, | ||
| 247 | {"label":"K2E (B2,D4)", "x":15.25, "y":2.25}, | ||
| 248 | {"label":"K2F (B2,D5)", "x":16.25, "y":2.25}, | ||
| 249 | {"label":"K2G (B2,D6)", "x":17.25, "y":2.25}, | ||
| 250 | {"label":"K30 (B3,B6)", "x":0, "y":3.25, "w":1.75}, | ||
| 251 | {"label":"K31 (B3,B7)", "x":1.75, "y":3.25}, | ||
| 252 | {"label":"K32 (B3,C0)", "x":2.75, "y":3.25}, | ||
| 253 | {"label":"K33 (B3,C1)", "x":3.75, "y":3.25}, | ||
| 254 | {"label":"K34 (B3,C2)", "x":4.75, "y":3.25}, | ||
| 255 | {"label":"K35 (B3,C3)", "x":5.75, "y":3.25}, | ||
| 256 | {"label":"K36 (B3,C4)", "x":6.75, "y":3.25}, | ||
| 257 | {"label":"K37 (B3,C5)", "x":7.75, "y":3.25}, | ||
| 258 | {"label":"K38 (B3,C6)", "x":8.75, "y":3.25}, | ||
| 259 | {"label":"K39 (B3,C7)", "x":9.75, "y":3.25}, | ||
| 260 | {"label":"K3A (B3,D0)", "x":10.75, "y":3.25}, | ||
| 261 | {"label":"K3B (B3,D1)", "x":11.75, "y":3.25}, | ||
| 262 | {"label":"K3C (B3,D2)", "x":12.75, "y":3.25}, | ||
| 263 | {"label":"K3D (B3,D3)", "x":13.75, "y":2.25, "w":1.25, "h":2}, | ||
| 264 | {"label":"K40 (B4,B6)", "x":0, "y":4.25, "w":1.25}, | ||
| 265 | {"label":"K41 (B4,B7)", "x":1.25, "y":4.25}, | ||
| 266 | {"label":"K42 (B4,C0)", "x":2.25, "y":4.25}, | ||
| 267 | {"label":"K43 (B4,C1)", "x":3.25, "y":4.25}, | ||
| 268 | {"label":"K44 (B4,C2)", "x":4.25, "y":4.25}, | ||
| 269 | {"label":"K45 (B4,C3)", "x":5.25, "y":4.25}, | ||
| 270 | {"label":"K46 (B4,C4)", "x":6.25, "y":4.25}, | ||
| 271 | {"label":"K47 (B4,C5)", "x":7.25, "y":4.25}, | ||
| 272 | {"label":"K48 (B4,C6)", "x":8.25, "y":4.25}, | ||
| 273 | {"label":"K49 (B4,C7)", "x":9.25, "y":4.25}, | ||
| 274 | {"label":"K4A (B4,D0)", "x":10.25, "y":4.25}, | ||
| 275 | {"label":"K4B (B4,D1)", "x":11.25, "y":4.25}, | ||
| 276 | {"label":"K4D (B4,D3)", "x":12.25, "y":4.25, "w":2.75}, | ||
| 277 | {"label":"K4F (B4,D5)", "x":16.25, "y":4.25}, | ||
| 278 | {"label":"K50 (B5,B6)", "x":0, "y":5.25, "w":1.25}, | ||
| 279 | {"label":"K51 (B5,B7)", "x":1.25, "y":5.25, "w":1.25}, | ||
| 280 | {"label":"K52 (B5,C0)", "x":2.5, "y":5.25, "w":1.25}, | ||
| 281 | {"label":"K56 (B5,C4)", "x":3.75, "y":5.25, "w":6.25}, | ||
| 282 | {"label":"K5A (B5,D0)", "x":10, "y":5.25, "w":1.25}, | ||
| 283 | {"label":"K5B (B5,D1)", "x":11.25, "y":5.25, "w":1.25}, | ||
| 284 | {"label":"K5C (B5,D2)", "x":12.5, "y":5.25, "w":1.25}, | ||
| 285 | {"label":"K5D (B5,D3)", "x":13.75, "y":5.25, "w":1.25}, | ||
| 286 | {"label":"K5E (B5,D4)", "x":15.25, "y":5.25}, | ||
| 287 | {"label":"K5F (B5,D5)", "x":16.25, "y":5.25}, | ||
| 288 | {"label":"K5G (B5,D6)", "x":17.25, "y":5.25} | ||
| 289 | ] | ||
| 290 | } | ||
| 291 | } | ||
| 292 | ,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/" | ||
| 293 | } \ No newline at end of file | ||
diff --git a/keyboards/mechlovin/infinityce/keymaps/default/keymap.c b/keyboards/mechlovin/infinityce/keymaps/default/keymap.c new file mode 100644 index 000000000..5b3747b6e --- /dev/null +++ b/keyboards/mechlovin/infinityce/keymaps/default/keymap.c | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /* Copyright 2020 mechlovin | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | |||
| 19 | |||
| 20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 21 | [0] = LAYOUT_all( | ||
| 22 | 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, RGB_MOD, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 23 | 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, KC_INS, KC_HOME, KC_PGUP, | ||
| 24 | 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_SLSH, KC_DEL, KC_END, KC_PGDN, | ||
| 25 | 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, | ||
| 26 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_BSLS, MO(1), KC_LSFT, KC_UP, | ||
| 27 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 28 | ), | ||
| 29 | }; | ||
diff --git a/keyboards/mechlovin/infinityce/keymaps/default/readme.md b/keyboards/mechlovin/infinityce/keymaps/default/readme.md new file mode 100644 index 000000000..32a673192 --- /dev/null +++ b/keyboards/mechlovin/infinityce/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for infinityce | |||
diff --git a/keyboards/mechlovin/infinityce/keymaps/via/keymap.c b/keyboards/mechlovin/infinityce/keymaps/via/keymap.c new file mode 100644 index 000000000..310529e0e --- /dev/null +++ b/keyboards/mechlovin/infinityce/keymaps/via/keymap.c | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | /* Copyright 2020 mechlovin | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | |||
| 19 | |||
| 20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 21 | [0] = LAYOUT_all( | ||
| 22 | 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, RGB_MOD, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 23 | 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, KC_INS, KC_HOME, KC_PGUP, | ||
| 24 | 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_SLSH, KC_DEL, KC_END, KC_PGDN, | ||
| 25 | 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, | ||
| 26 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_BSLS, MO(1), KC_LSFT, KC_UP, | ||
| 27 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 28 | ), | ||
| 29 | [1] = LAYOUT_all( | ||
| 30 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 31 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 32 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
| 36 | ), | ||
| 37 | [2] = LAYOUT_all( | ||
| 38 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 39 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 40 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 41 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 42 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 43 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
| 44 | ), | ||
| 45 | [3] = LAYOUT_all( | ||
| 46 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 47 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 48 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 49 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 50 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 51 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
| 52 | ), | ||
| 53 | }; | ||
diff --git a/keyboards/mechlovin/infinityce/keymaps/via/readme.md b/keyboards/mechlovin/infinityce/keymaps/via/readme.md new file mode 100644 index 000000000..992bbfbce --- /dev/null +++ b/keyboards/mechlovin/infinityce/keymaps/via/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # The VIA keymap for infinityce | ||
| 2 | |||
| 3 |  | ||
diff --git a/keyboards/mechlovin/infinityce/keymaps/via/rules.mk b/keyboards/mechlovin/infinityce/keymaps/via/rules.mk new file mode 100644 index 000000000..036bd6d1c --- /dev/null +++ b/keyboards/mechlovin/infinityce/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes \ No newline at end of file | |||
diff --git a/keyboards/mechlovin/infinityce/readme.md b/keyboards/mechlovin/infinityce/readme.md new file mode 100644 index 000000000..376dd3cb4 --- /dev/null +++ b/keyboards/mechlovin/infinityce/readme.md | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # infinityce | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | Replacement PCB for TGR Jane CE V2 keyboard | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [mechlovin](https://github.com/mechlovin) | ||
| 8 | * Hardware Supported: Infinity CE PCB | ||
| 9 | * Hardware Availability: [GeekhackGB](https://geekhack.org/index.php?topic=104345.0) | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make mechlovin/infinityce:default | ||
| 14 | |||
| 15 | Build firmware for VIA: | ||
| 16 | |||
| 17 | make mechlovin/infinityce:via | ||
| 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). | ||
diff --git a/keyboards/mechlovin/infinityce/rules.mk b/keyboards/mechlovin/infinityce/rules.mk new file mode 100644 index 000000000..8e8807c5e --- /dev/null +++ b/keyboards/mechlovin/infinityce/rules.mk | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = atmel-dfu | ||
| 13 | |||
| 14 | # Build Options | ||
| 15 | # change yes to no to disable | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 20 | CONSOLE_ENABLE = no # Console for debug | ||
| 21 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 25 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
| 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 28 | MIDI_ENABLE = no # MIDI support | ||
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 32 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
