diff options
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/ramonimbao/aelith/aelith.c | 17 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/aelith.h | 64 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/config.h | 105 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/info.json | 90 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/keymaps/default/keymap.c | 33 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/keymaps/via/keymap.c | 47 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/readme.md | 14 | ||||
| -rw-r--r-- | keyboards/ramonimbao/aelith/rules.mk | 27 |
9 files changed, 398 insertions, 0 deletions
diff --git a/keyboards/ramonimbao/aelith/aelith.c b/keyboards/ramonimbao/aelith/aelith.c new file mode 100644 index 000000000..e2153f764 --- /dev/null +++ b/keyboards/ramonimbao/aelith/aelith.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2020 Ramon Imbao | ||
| 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 "aelith.h" | ||
diff --git a/keyboards/ramonimbao/aelith/aelith.h b/keyboards/ramonimbao/aelith/aelith.h new file mode 100644 index 000000000..47fe9a90e --- /dev/null +++ b/keyboards/ramonimbao/aelith/aelith.h | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | /* Copyright 2020 Ramon Imbao | ||
| 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 | /* This is a shortcut to help you visually see your layout. | ||
| 22 | * | ||
| 23 | * The first section contains all of the arguments representing the physical | ||
| 24 | * layout of the board and position of the keys. | ||
| 25 | * | ||
| 26 | * The second converts the arguments into a two-dimensional array which | ||
| 27 | * represents the switch matrix. | ||
| 28 | */ | ||
| 29 | |||
| 30 | #define XXX KC_NO | ||
| 31 | |||
| 32 | // Split backspace | ||
| 33 | // Split right shift | ||
| 34 | #define LAYOUT_alice_split_bs( \ | ||
| 35 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, \ | ||
| 36 | k10, k11, k12, k13, k14, k15, k16, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, \ | ||
| 37 | k20, k21, k22, k23, k24, k25, k26, k28, k29, k2a, k2b, k2c, k2d, k2f, \ | ||
| 38 | k31, k32, k33, k34, k35, k36, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
| 39 | k41, k43, k44, k46, k49, k4b, k4f \ | ||
| 40 | ) \ | ||
| 41 | { \ | ||
| 42 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f }, \ | ||
| 43 | { k10, k11, k12, k13, k14, k15, k16, XXX, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f }, \ | ||
| 44 | { k20, k21, k22, k23, k24, k25, k26, XXX, k28, k29, k2a, k2b, k2c, k2d, XXX, k2f }, \ | ||
| 45 | { XXX, k31, k32, k33, k34, k35, k36, XXX, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
| 46 | { XXX, k41, XXX, k43, k44, XXX, k46, XXX, XXX, k49, XXX, k4b, XXX, XXX, XXX, k4f }, \ | ||
| 47 | } | ||
| 48 | |||
| 49 | // 2u backspace | ||
| 50 | // Split right shift | ||
| 51 | #define LAYOUT_alice( \ | ||
| 52 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0f, \ | ||
| 53 | k10, k11, k12, k13, k14, k15, k16, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, \ | ||
| 54 | k20, k21, k22, k23, k24, k25, k26, k28, k29, k2a, k2b, k2c, k2d, k2f, \ | ||
| 55 | k31, k32, k33, k34, k35, k36, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
| 56 | k41, k43, k44, k46, k49, k4b, k4f \ | ||
| 57 | ) \ | ||
| 58 | { \ | ||
| 59 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, XXX, k0f }, \ | ||
| 60 | { k10, k11, k12, k13, k14, k15, k16, XXX, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f }, \ | ||
| 61 | { k20, k21, k22, k23, k24, k25, k26, XXX, k28, k29, k2a, k2b, k2c, k2d, XXX, k2f }, \ | ||
| 62 | { XXX, k31, k32, k33, k34, k35, k36, XXX, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
| 63 | { XXX, k41, XXX, k43, k44, XXX, k46, XXX, XXX, k49, XXX, k4b, XXX, XXX, XXX, k4f }, \ | ||
| 64 | } | ||
diff --git a/keyboards/ramonimbao/aelith/config.h b/keyboards/ramonimbao/aelith/config.h new file mode 100644 index 000000000..0c4c2285d --- /dev/null +++ b/keyboards/ramonimbao/aelith/config.h | |||
| @@ -0,0 +1,105 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 Ramon Imbao | ||
| 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 0xB16B | ||
| 24 | #define PRODUCT_ID 0xE460 | ||
| 25 | #define DEVICE_VER 0x0012 | ||
| 26 | #define MANUFACTURER Ramon Imbao | ||
| 27 | #define PRODUCT AELITH | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 5 | ||
| 31 | #define MATRIX_COLS 16 | ||
| 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 | #define MATRIX_ROW_PINS { D5, D1, D0, D6, A7 } | ||
| 44 | #define MATRIX_COL_PINS { D7, C0, C1, C2, C3, C4, C5, C6, C7, A6, A5, A0, A1, A2, A3, A4 } | ||
| 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 | |||
| 53 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 54 | //#define MATRIX_HAS_GHOST | ||
| 55 | |||
| 56 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 57 | #define LOCKING_SUPPORT_ENABLE | ||
| 58 | /* Locking resynchronize hack */ | ||
| 59 | #define LOCKING_RESYNC_ENABLE | ||
| 60 | |||
| 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 | /* | ||
| 67 | * Force NKRO | ||
| 68 | * | ||
| 69 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 70 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 71 | * makefile for this to work.) | ||
| 72 | * | ||
| 73 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 74 | * until the next keyboard reset. | ||
| 75 | * | ||
| 76 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 77 | * fully operational during normal computer usage. | ||
| 78 | * | ||
| 79 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 80 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 81 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 82 | * power-up. | ||
| 83 | * | ||
| 84 | */ | ||
| 85 | //#define FORCE_NKRO | ||
| 86 | |||
| 87 | /* | ||
| 88 | * Feature disable options | ||
| 89 | * These options are also useful to firmware size reduction. | ||
| 90 | */ | ||
| 91 | |||
| 92 | /* disable debug print */ | ||
| 93 | //#define NO_DEBUG | ||
| 94 | |||
| 95 | /* disable print */ | ||
| 96 | //#define NO_PRINT | ||
| 97 | |||
| 98 | /* disable action features */ | ||
| 99 | //#define NO_ACTION_LAYER | ||
| 100 | //#define NO_ACTION_TAPPING | ||
| 101 | //#define NO_ACTION_ONESHOT | ||
| 102 | |||
| 103 | /* disable these deprecated features by default */ | ||
| 104 | #define NO_ACTION_MACRO | ||
| 105 | #define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/ramonimbao/aelith/info.json b/keyboards/ramonimbao/aelith/info.json new file mode 100644 index 000000000..e001c1d4d --- /dev/null +++ b/keyboards/ramonimbao/aelith/info.json | |||
| @@ -0,0 +1,90 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "AELITH", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Ramon Imbao", | ||
| 5 | "width": 19, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_alice_split_bs": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0.5, "y":0}, | ||
| 11 | |||
| 12 | {"x":1.75, "y":0}, | ||
| 13 | {"x":2.75, "y":0}, | ||
| 14 | {"x":3.75, "y":0}, | ||
| 15 | {"x":4.75, "y":0}, | ||
| 16 | {"x":5.75, "y":0}, | ||
| 17 | {"x":6.75, "y":0}, | ||
| 18 | {"x":7.75, "y":0}, | ||
| 19 | |||
| 20 | {"x":11, "y":0}, | ||
| 21 | {"x":12, "y":0}, | ||
| 22 | {"x":13, "y":0}, | ||
| 23 | {"x":14, "y":0}, | ||
| 24 | {"x":15, "y":0}, | ||
| 25 | {"x":16, "y":0}, | ||
| 26 | {"x":17, "y":0}, | ||
| 27 | {"x":18, "y":0}, | ||
| 28 | |||
| 29 | {"x":0.25, "y":1}, | ||
| 30 | {"x":1.75, "y":1, "w":1.5}, | ||
| 31 | {"x":3.25, "y":1}, | ||
| 32 | {"x":4.25, "y":1}, | ||
| 33 | {"x":5.25, "y":1}, | ||
| 34 | {"x":6.25, "y":1}, | ||
| 35 | {"x":7.25, "y":1}, | ||
| 36 | |||
| 37 | {"x":10.5, "y":1}, | ||
| 38 | {"x":11.5, "y":1}, | ||
| 39 | {"x":12.5, "y":1}, | ||
| 40 | {"x":13.5, "y":1}, | ||
| 41 | {"x":14.5, "y":1}, | ||
| 42 | {"x":15.5, "y":1}, | ||
| 43 | {"x":16.5, "y":1}, | ||
| 44 | {"x":17.5, "y":1, "w":1.5}, | ||
| 45 | |||
| 46 | {"x":0, "y":2}, | ||
| 47 | |||
| 48 | {"x":1.75, "y":2, "w":1.75}, | ||
| 49 | {"x":3.5, "y":2}, | ||
| 50 | {"x":4.5, "y":2}, | ||
| 51 | {"x":5.5, "y":2}, | ||
| 52 | {"x":6.5, "y":2}, | ||
| 53 | {"x":7.5, "y":2}, | ||
| 54 | |||
| 55 | {"x":10.75, "y":2}, | ||
| 56 | {"x":11.75, "y":2}, | ||
| 57 | {"x":12.75, "y":2}, | ||
| 58 | {"x":13.75, "y":2}, | ||
| 59 | {"x":14.75, "y":2}, | ||
| 60 | {"x":15.75, "y":2}, | ||
| 61 | {"x":16.75, "y":2, "w":2.25}, | ||
| 62 | |||
| 63 | {"x":1.75, "y":3, "w":2.25}, | ||
| 64 | {"x":4, "y":3}, | ||
| 65 | {"x":5, "y":3}, | ||
| 66 | {"x":6, "y":3}, | ||
| 67 | {"x":7, "y":3}, | ||
| 68 | {"x":8, "y":3}, | ||
| 69 | |||
| 70 | {"x":10.25, "y":3}, | ||
| 71 | {"x":11.25, "y":3}, | ||
| 72 | {"x":12.25, "y":3}, | ||
| 73 | {"x":13.25, "y":3}, | ||
| 74 | {"x":14.25, "y":3}, | ||
| 75 | {"x":15.25, "y":3}, | ||
| 76 | {"x":16.25, "y":3, "w":1.75}, | ||
| 77 | {"x":18, "y":3}, | ||
| 78 | |||
| 79 | {"x":1.75, "y":4, "w":1.5}, | ||
| 80 | {"x":4.5, "y":4, "w":1.5}, | ||
| 81 | {"x":6, "y":4, "w":2.25}, | ||
| 82 | {"x":8.25, "y":4}, | ||
| 83 | |||
| 84 | {"x":10.25, "y":4, "w":2.75}, | ||
| 85 | {"x":13, "y":4, "w":1.5}, | ||
| 86 | {"x":17.5, "y":4, "w":1.5} | ||
| 87 | ] | ||
| 88 | } | ||
| 89 | } | ||
| 90 | } | ||
diff --git a/keyboards/ramonimbao/aelith/keymaps/default/keymap.c b/keyboards/ramonimbao/aelith/keymaps/default/keymap.c new file mode 100644 index 000000000..ff9319e4f --- /dev/null +++ b/keyboards/ramonimbao/aelith/keymaps/default/keymap.c | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* Copyright 2020 Ramon Imbao | ||
| 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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | [0] = LAYOUT_alice_split_bs( | ||
| 20 | KC_ESC, 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_BSPC, | ||
| 21 | KC_PGUP, 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, | ||
| 22 | KC_PGDN, 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, | ||
| 23 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1), | ||
| 24 | KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_SPC, KC_RALT, KC_RCTL | ||
| 25 | ), | ||
| 26 | [1] = LAYOUT_alice_split_bs( | ||
| 27 | RESET, _______, 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_DEL, | ||
| 28 | KC_HOME, _______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | KC_END, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______ | ||
| 32 | ), | ||
| 33 | }; | ||
diff --git a/keyboards/ramonimbao/aelith/keymaps/via/keymap.c b/keyboards/ramonimbao/aelith/keymaps/via/keymap.c new file mode 100644 index 000000000..7c48ffa0d --- /dev/null +++ b/keyboards/ramonimbao/aelith/keymaps/via/keymap.c | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /* Copyright 2020 Ramon Imbao | ||
| 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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | [0] = LAYOUT_alice_split_bs( | ||
| 20 | KC_ESC, 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_BSPC, | ||
| 21 | KC_PGUP, 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, | ||
| 22 | KC_PGDN, 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, | ||
| 23 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1), | ||
| 24 | KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_SPC, KC_RALT, KC_RCTL | ||
| 25 | ), | ||
| 26 | [1] = LAYOUT_alice_split_bs( | ||
| 27 | RESET, _______, 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_DEL, | ||
| 28 | KC_HOME, _______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | KC_END, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______ | ||
| 32 | ), | ||
| 33 | [2] = LAYOUT_alice_split_bs( | ||
| 34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 38 | _______, _______, _______, _______, _______, _______, _______ | ||
| 39 | ), | ||
| 40 | [3] = LAYOUT_alice_split_bs( | ||
| 41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 45 | _______, _______, _______, _______, _______, _______, _______ | ||
| 46 | ), | ||
| 47 | }; | ||
diff --git a/keyboards/ramonimbao/aelith/keymaps/via/rules.mk b/keyboards/ramonimbao/aelith/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/ramonimbao/aelith/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/ramonimbao/aelith/readme.md b/keyboards/ramonimbao/aelith/readme.md new file mode 100644 index 000000000..243d58e29 --- /dev/null +++ b/keyboards/ramonimbao/aelith/readme.md | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | # ÆLITH | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A through-hole Alice-layout keyboard. | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [Ramon Imbao](https://github.com/ramonimbao) | ||
| 8 | * Hardware Supported: ATmega32A | ||
| 9 | |||
| 10 | Make example for this keyboard (after setting up your build environment): | ||
| 11 | |||
| 12 | make ramonimbao/aelith:default | ||
| 13 | |||
| 14 | 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/ramonimbao/aelith/rules.mk b/keyboards/ramonimbao/aelith/rules.mk new file mode 100644 index 000000000..5e4cc3d68 --- /dev/null +++ b/keyboards/ramonimbao/aelith/rules.mk | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32a | ||
| 3 | |||
| 4 | # Processor frequency | ||
| 5 | F_CPU = 16000000 | ||
| 6 | |||
| 7 | # Bootloader selection | ||
| 8 | BOOTLOADER = USBasp | ||
| 9 | |||
| 10 | # Build Options | ||
| 11 | # change yes to no to disable | ||
| 12 | # | ||
| 13 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 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 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 19 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 20 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 21 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 22 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 23 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 25 | AUDIO_ENABLE = no # Audio output | ||
| 26 | |||
| 27 | LAYOUTS = alice | ||
