diff options
| author | tszaboo <74186529+tszaboo@users.noreply.github.com> | 2021-03-17 07:50:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-16 23:50:22 -0700 |
| commit | 8a2d3a8861588646c8563dfde080e49358faa245 (patch) | |
| tree | e3cb6b0b398195d6ccf4325f4b28485eb778113f | |
| parent | 538194344a010e7876c278b10e513ec1e6b245d2 (diff) | |
| download | qmk_firmware-8a2d3a8861588646c8563dfde080e49358faa245.tar.gz qmk_firmware-8a2d3a8861588646c8563dfde080e49358faa245.zip | |
[Keyboard] Add support for ortho4exent (#11699)
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/config.h | 136 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/info.json | 86 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/keymaps/default/keymap.c | 33 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/ortho4exent.c | 16 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/ortho4exent.h | 41 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/tszaboo/ortho4exent/rules.mk | 23 |
8 files changed, 351 insertions, 0 deletions
diff --git a/keyboards/tszaboo/ortho4exent/config.h b/keyboards/tszaboo/ortho4exent/config.h new file mode 100644 index 000000000..a88a9c183 --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/config.h | |||
| @@ -0,0 +1,136 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 tszaboo | ||
| 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 0x5453 // "TS" | ||
| 24 | #define PRODUCT_ID 0x7934 // "O4" | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER tszaboo | ||
| 27 | #define PRODUCT ortho4exent | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 5 | ||
| 31 | #define MATRIX_COLS 15 | ||
| 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 { B0, B1, D4, D7, B4 } | ||
| 44 | /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14*/ | ||
| 45 | #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7, D6, D5, D3, D2, D1, B7, B3, B2 } | ||
| 46 | #define UNUSED_PINS | ||
| 47 | #define LED_CAPS_LOCK_PIN E6 | ||
| 48 | |||
| 49 | /* COL2ROW, ROW2COL*/ | ||
| 50 | #define DIODE_DIRECTION COL2ROW | ||
| 51 | |||
| 52 | /* | ||
| 53 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 54 | */ | ||
| 55 | // #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 56 | |||
| 57 | // #define BACKLIGHT_PIN B7 | ||
| 58 | // #define BACKLIGHT_BREATHING | ||
| 59 | // #define BACKLIGHT_LEVELS 3 | ||
| 60 | |||
| 61 | #define RGB_DI_PIN B6 | ||
| 62 | #ifdef RGB_DI_PIN | ||
| 63 | #define RGBLED_NUM 16 | ||
| 64 | #define RGBLIGHT_HUE_STEP 8 | ||
| 65 | #define RGBLIGHT_SAT_STEP 8 | ||
| 66 | #define RGBLIGHT_VAL_STEP 8 | ||
| 67 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 68 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 69 | /*== all animations enable ==*/ | ||
| 70 | #define RGBLIGHT_ANIMATIONS | ||
| 71 | /*== or choose animations ==*/ | ||
| 72 | // #define RGBLIGHT_EFFECT_BREATHING | ||
| 73 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 74 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 75 | // #define RGBLIGHT_EFFECT_SNAKE | ||
| 76 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
| 77 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 78 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 79 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 80 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 81 | #endif | ||
| 82 | |||
| 83 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 84 | #define DEBOUNCE 5 | ||
| 85 | |||
| 86 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 87 | //#define MATRIX_HAS_GHOST | ||
| 88 | |||
| 89 | /* number of backlight levels */ | ||
| 90 | |||
| 91 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 92 | #define LOCKING_SUPPORT_ENABLE | ||
| 93 | /* Locking resynchronize hack */ | ||
| 94 | #define LOCKING_RESYNC_ENABLE | ||
| 95 | |||
| 96 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 97 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 98 | */ | ||
| 99 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
| 100 | |||
| 101 | /* | ||
| 102 | * Force NKRO | ||
| 103 | * | ||
| 104 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 105 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 106 | * makefile for this to work.) | ||
| 107 | * | ||
| 108 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 109 | * until the next keyboard reset. | ||
| 110 | * | ||
| 111 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 112 | * fully operational during normal computer usage. | ||
| 113 | * | ||
| 114 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 115 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 116 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 117 | * power-up. | ||
| 118 | * | ||
| 119 | */ | ||
| 120 | //#define FORCE_NKRO | ||
| 121 | |||
| 122 | /* disable print */ | ||
| 123 | //#define NO_PRINT | ||
| 124 | |||
| 125 | /* disable action features */ | ||
| 126 | //#define NO_ACTION_LAYER | ||
| 127 | //#define NO_ACTION_TAPPING | ||
| 128 | //#define NO_ACTION_ONESHOT | ||
| 129 | |||
| 130 | /* disable these deprecated features by default */ | ||
| 131 | #define NO_ACTION_MACRO | ||
| 132 | #define NO_ACTION_FUNCTION | ||
| 133 | |||
| 134 | /* Bootmagic Lite key configuration */ | ||
| 135 | //#define BOOTMAGIC_LITE_ROW 0 | ||
| 136 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/tszaboo/ortho4exent/info.json b/keyboards/tszaboo/ortho4exent/info.json new file mode 100644 index 000000000..a34b997ca --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/info.json | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Ortho4exent", | ||
| 3 | "url": "https://github.com/tszaboo/Ortho4Exent", | ||
| 4 | "maintainer": "tszaboo", | ||
| 5 | "width": 16, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"k00","x":0,"y":0,"w":1.5}, | ||
| 11 | {"label":"k01","x":1.5,"y":0}, | ||
| 12 | {"label":"k02","x":2.5,"y":0}, | ||
| 13 | {"label":"k03","x":3.5,"y":0}, | ||
| 14 | {"label":"k04","x":4.5,"y":0}, | ||
| 15 | {"label":"k05","x":5.5,"y":0}, | ||
| 16 | {"label":"k06","x":6.5,"y":0}, | ||
| 17 | {"label":"k07","x":7.5,"y":0}, | ||
| 18 | {"label":"k08","x":8.5,"y":0}, | ||
| 19 | {"label":"k09","x":9.5,"y":0}, | ||
| 20 | {"label":"k0A","x":10.5,"y":0}, | ||
| 21 | {"label":"k0B","x":11.5,"y":0}, | ||
| 22 | {"label":"k0C","x":12.5,"y":0}, | ||
| 23 | {"label":"k0D","x":13.5,"y":0}, | ||
| 24 | {"label":"k0E","x":14.5,"y":0,"w":1.5}, | ||
| 25 | {"label":"k10","x":0,"y":1,"w":1.5}, | ||
| 26 | {"label":"k11","x":1.5,"y":1}, | ||
| 27 | {"label":"k12","x":2.5,"y":1}, | ||
| 28 | {"label":"k13","x":3.5,"y":1}, | ||
| 29 | {"label":"k14","x":4.5,"y":1}, | ||
| 30 | {"label":"k15","x":5.5,"y":1}, | ||
| 31 | {"label":"k16","x":6.5,"y":1}, | ||
| 32 | {"label":"k17","x":7.5,"y":1}, | ||
| 33 | {"label":"k18","x":8.5,"y":1}, | ||
| 34 | {"label":"k19","x":9.5,"y":1}, | ||
| 35 | {"label":"k1A","x":10.5,"y":1}, | ||
| 36 | {"label":"k1B","x":11.5,"y":1}, | ||
| 37 | {"label":"k1C","x":12.5,"y":1}, | ||
| 38 | {"label":"k1D","x":13.5,"y":1}, | ||
| 39 | {"label":"k1E","x":14.5,"y":1,"w":1.5}, | ||
| 40 | {"label":"k20","x":0,"y":2}, | ||
| 41 | {"label":"k21","x":1.5,"y":2}, | ||
| 42 | {"label":"k22","x":2.5,"y":2}, | ||
| 43 | {"label":"k23","x":3.5,"y":2}, | ||
| 44 | {"label":"k24","x":4.5,"y":2}, | ||
| 45 | {"label":"k25","x":5.5,"y":2}, | ||
| 46 | {"label":"k26","x":6.5,"y":2}, | ||
| 47 | {"label":"k27","x":7.5,"y":2}, | ||
| 48 | {"label":"k28","x":8.5,"y":2}, | ||
| 49 | {"label":"k29","x":9.5,"y":2}, | ||
| 50 | {"label":"k2A","x":10.5,"y":2}, | ||
| 51 | {"label":"k2B","x":11.5,"y":2}, | ||
| 52 | {"label":"k2C","x":12.5,"y":2}, | ||
| 53 | {"label":"k2D","x":13.5,"y":2}, | ||
| 54 | {"label":"k2E","x":14.5,"y":2}, | ||
| 55 | {"label":"k30","x":0,"y":3,"w":1.5}, | ||
| 56 | {"label":"k31","x":1.5,"y":3}, | ||
| 57 | {"label":"k32","x":2.5,"y":3}, | ||
| 58 | {"label":"k33","x":3.5,"y":3}, | ||
| 59 | {"label":"k34","x":4.5,"y":3}, | ||
| 60 | {"label":"k35","x":5.5,"y":3}, | ||
| 61 | {"label":"k36","x":6.5,"y":3}, | ||
| 62 | {"label":"k37","x":7.5,"y":3}, | ||
| 63 | {"label":"k38","x":8.5,"y":3}, | ||
| 64 | {"label":"k39","x":9.5,"y":3}, | ||
| 65 | {"label":"k3A","x":10.5,"y":3}, | ||
| 66 | {"label":"k3B","x":11.5,"y":3}, | ||
| 67 | {"label":"k3C","x":12.5,"y":3}, | ||
| 68 | {"label":"k3D","x":13.5,"y":3}, | ||
| 69 | {"label":"k3E","x":14.5,"y":3,"w":1.5}, | ||
| 70 | {"label":"k40","x":0,"y":4,"w":1.5}, | ||
| 71 | {"label":"k41","x":1.5,"y":4,"w":1.5}, | ||
| 72 | {"label":"k42","x":3,"y":4,"w":1.5}, | ||
| 73 | {"label":"k43","x":4.5,"y":4,"w":2}, | ||
| 74 | {"label":"k44","x":6.5,"y":4}, | ||
| 75 | {"label":"k45","x":7.5,"y":4}, | ||
| 76 | {"label":"k46","x":8.5,"y":4}, | ||
| 77 | {"label":"k47","x":9.5,"y":4,"w":2}, | ||
| 78 | {"label":"k48","x":11.5,"y":4,"w":1.5}, | ||
| 79 | {"label":"k49","x":13,"y":4,"w":1.5}, | ||
| 80 | {"label":"k4A","x":14.5,"y":4,"w":1.5} | ||
| 81 | |||
| 82 | ] | ||
| 83 | } | ||
| 84 | } | ||
| 85 | } | ||
| 86 | |||
diff --git a/keyboards/tszaboo/ortho4exent/keymaps/default/keymap.c b/keyboards/tszaboo/ortho4exent/keymaps/default/keymap.c new file mode 100644 index 000000000..c6a8a7a80 --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/keymaps/default/keymap.c | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* Copyright 2021 tszaboo | ||
| 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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 18 | [0] = LAYOUT( | ||
| 19 | //` 1 2 3 4 5 - ESC = 6 7 8 9 0 BSP | ||
| 20 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_ESC, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
| 21 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_HOME, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, | ||
| 22 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_QUOT, KC_END, KC_BSLS, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
| 23 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_PGUP, KC_UP, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, | ||
| 24 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_LEFT, KC_DOWN, KC_RGHT, KC_SPC, KC_RALT, KC_RCTL, MO(1) | ||
| 25 | ), | ||
| 26 | [1] = LAYOUT( | ||
| 27 | KC_TRNS, KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , KC_TRNS, KC_TRNS, KC_TRNS, KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , KC_TRNS, | ||
| 28 | 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, RESET, KC_TRNS, | ||
| 29 | 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, | ||
| 30 | KC_TRNS, RGB_TOG, RGB_MOD, RGB_M_P, RGB_M_G, 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 | ||
| 32 | ) | ||
| 33 | }; | ||
diff --git a/keyboards/tszaboo/ortho4exent/keymaps/default/readme.md b/keyboards/tszaboo/ortho4exent/keymaps/default/readme.md new file mode 100644 index 000000000..153fc96da --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for Ortho4exent | |||
diff --git a/keyboards/tszaboo/ortho4exent/ortho4exent.c b/keyboards/tszaboo/ortho4exent/ortho4exent.c new file mode 100644 index 000000000..b6ef9fedc --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/ortho4exent.c | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* Copyright 2021 tszaboo | ||
| 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 "ortho4exent.h" | ||
diff --git a/keyboards/tszaboo/ortho4exent/ortho4exent.h b/keyboards/tszaboo/ortho4exent/ortho4exent.h new file mode 100644 index 000000000..3814ce069 --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/ortho4exent.h | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | /* Copyright 2021 tszaboo | ||
| 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 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | |||
| 20 | /* This a shortcut to help you visually see your layout. | ||
| 21 | * | ||
| 22 | * The first section contains all of the arguments representing the physical | ||
| 23 | * layout of the board and position of the keys. | ||
| 24 | * | ||
| 25 | * The second converts the arguments into a two-dimensional array which | ||
| 26 | * represents the switch matrix. | ||
| 27 | */ | ||
| 28 | #define LAYOUT( \ | ||
| 29 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, k0C, k0D, k0E,\ | ||
| 30 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, k1C, k1D, k1E,\ | ||
| 31 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, k2C, k2D, k2E,\ | ||
| 32 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, k3C, k3D, k3E,\ | ||
| 33 | k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4A \ | ||
| 34 | ) \ | ||
| 35 | { \ | ||
| 36 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, k0C, k0D, k0E }, \ | ||
| 37 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, k1C, k1D, k1E }, \ | ||
| 38 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, k2C, k2D, k2E }, \ | ||
| 39 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, k3C, k3D, k3E }, \ | ||
| 40 | { k40, k41, KC_NO, k42, k43, KC_NO, k44, k45, k46, k47, KC_NO, k48, KC_NO, k49, k4A }, \ | ||
| 41 | } | ||
diff --git a/keyboards/tszaboo/ortho4exent/readme.md b/keyboards/tszaboo/ortho4exent/readme.md new file mode 100644 index 000000000..203928059 --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # tszaboo | ||
| 2 | |||
| 3 | Ortholinear PCB that is a drop-in replacement for Exent keyboard. | ||
| 4 | Layout is inspired by excellent Boardwalk PCB, but extended with an extra column to accommodate the 65% Exent form factor. | ||
| 5 | |||
| 6 | * Keyboard Maintainer: [tszaboo](https://github.com/tszaboo/) | ||
| 7 | * Keyboard Product owner: [Riba] | ||
| 8 | * Hardware Supported: Ortho4exent | ||
| 9 | * Hardware Availability: [Geekhack Group Buy](https://geekhack.org/index.php?topic=110120.0) | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make tszaboo/ortho4exent:default | ||
| 14 | |||
| 15 | 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/tszaboo/ortho4exent/rules.mk b/keyboards/tszaboo/ortho4exent/rules.mk new file mode 100644 index 000000000..e1756f2c4 --- /dev/null +++ b/keyboards/tszaboo/ortho4exent/rules.mk | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = caterina | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 11 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = yes # Console for debug | ||
| 14 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 18 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 22 | AUDIO_ENABLE = no # Audio output | ||
| 23 | LTO_ENABLE = yes | ||
