diff options
| author | Lukas Alexandre <the.lukelex@gmail.com> | 2020-11-14 23:33:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-14 14:33:51 -0800 |
| commit | a7afaa36a1ed7749b7374106ff0ddab2a3a221b5 (patch) | |
| tree | c5747d6cb656c2012be63f526890fc21f36f2078 /keyboards/foxlab | |
| parent | d7c1b890f18418248658d48c9eac5df37091a1f2 (diff) | |
| download | qmk_firmware-a7afaa36a1ed7749b7374106ff0ddab2a3a221b5.tar.gz qmk_firmware-a7afaa36a1ed7749b7374106ff0ddab2a3a221b5.zip | |
[Keyboard] Time 80 TKL by Fox Lab (#10851)
* Porting Time 80 TKL
* Update keyboards/foxlab/key65/hotswap/readme.md
* Update keyboards/foxlab/time80/rules.mk
* Update keyboards/foxlab/time80/config.h
* Update keyboards/foxlab/time80/readme.md
* Update keyboards/foxlab/time80/readme.md
* Update keyboards/foxlab/time80/config.h
* Use LAYOUT_all
* Fixing placement of shortcuts
Diffstat (limited to 'keyboards/foxlab')
| -rw-r--r-- | keyboards/foxlab/time80/config.h | 129 | ||||
| -rw-r--r-- | keyboards/foxlab/time80/keymaps/default/keymap.c | 59 | ||||
| -rw-r--r-- | keyboards/foxlab/time80/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/foxlab/time80/readme.md | 27 | ||||
| -rw-r--r-- | keyboards/foxlab/time80/rules.mk | 19 | ||||
| -rw-r--r-- | keyboards/foxlab/time80/time80.c | 17 | ||||
| -rw-r--r-- | keyboards/foxlab/time80/time80.h | 44 |
7 files changed, 296 insertions, 0 deletions
diff --git a/keyboards/foxlab/time80/config.h b/keyboards/foxlab/time80/config.h new file mode 100644 index 000000000..8fea3e7e6 --- /dev/null +++ b/keyboards/foxlab/time80/config.h | |||
| @@ -0,0 +1,129 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 Lukas Alexander | ||
| 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 0x464C // "FL" | ||
| 24 | #define PRODUCT_ID 0x0005 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Fox Lab | ||
| 27 | #define PRODUCT Time80 | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 7 | ||
| 31 | #define MATRIX_COLS 15 | ||
| 32 | |||
| 33 | // 0 1 2 3 4 5 6 7 8 9 A B C D E | ||
| 34 | #define MATRIX_ROW_PINS { B1, B2, B3, B5, B6, B7, B0 } | ||
| 35 | #define MATRIX_COL_PINS { A1, A2, A3, A4, A5, A6, A7, C7, C6, C5, C4, C3, C2, D7, A0 } | ||
| 36 | #define UNUSED_PINS | ||
| 37 | |||
| 38 | /* COL2ROW, ROW2COL */ | ||
| 39 | #define DIODE_DIRECTION COL2ROW | ||
| 40 | |||
| 41 | #define BACKLIGHT_PIN D4 | ||
| 42 | #define BACKLIGHT_LEVELS 3 | ||
| 43 | //#define BACKLIGHT_BREATHING | ||
| 44 | |||
| 45 | #define RGBLED_NUM 16 | ||
| 46 | //#define RGBLIGHT_HUE_STEP 8 | ||
| 47 | //#define RGBLIGHT_SAT_STEP 8 | ||
| 48 | //#define RGBLIGHT_VAL_STEP 8 | ||
| 49 | //#define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 50 | //#define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 51 | /*== all animations enable ==*/ | ||
| 52 | //#define RGBLIGHT_ANIMATIONS | ||
| 53 | /*== or choose animations ==*/ | ||
| 54 | //#define RGBLIGHT_EFFECT_BREATHING | ||
| 55 | //#define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 56 | //#define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 57 | //#define RGBLIGHT_EFFECT_SNAKE | ||
| 58 | //#define RGBLIGHT_EFFECT_KNIGHT | ||
| 59 | //#define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 60 | //#define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 61 | //#define RGBLIGHT_EFFECT_RGB_TEST | ||
| 62 | //#define RGBLIGHT_EFFECT_ALTERNATING | ||
| 63 | /*== customize breathing effect ==*/ | ||
| 64 | /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
| 65 | //#define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
| 66 | /*==== use exp() and sin() ====*/ | ||
| 67 | //#define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
| 68 | //#define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
| 69 | |||
| 70 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 71 | #define DEBOUNCE 5 | ||
| 72 | |||
| 73 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 74 | //#define MATRIX_HAS_GHOST | ||
| 75 | |||
| 76 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 77 | #define LOCKING_SUPPORT_ENABLE | ||
| 78 | /* Locking resynchronize hack */ | ||
| 79 | #define LOCKING_RESYNC_ENABLE | ||
| 80 | |||
| 81 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 82 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 83 | */ | ||
| 84 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
| 85 | |||
| 86 | /* | ||
| 87 | * Force NKRO | ||
| 88 | * | ||
| 89 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 90 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 91 | * makefile for this to work.) | ||
| 92 | * | ||
| 93 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 94 | * until the next keyboard reset. | ||
| 95 | * | ||
| 96 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 97 | * fully operational during normal computer usage. | ||
| 98 | * | ||
| 99 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 100 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 101 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 102 | * power-up. | ||
| 103 | * | ||
| 104 | */ | ||
| 105 | //#define FORCE_NKRO | ||
| 106 | |||
| 107 | /* | ||
| 108 | * Feature disable options | ||
| 109 | * These options are also useful to firmware size reduction. | ||
| 110 | */ | ||
| 111 | |||
| 112 | /* disable debug print */ | ||
| 113 | //#define NO_DEBUG | ||
| 114 | |||
| 115 | /* disable print */ | ||
| 116 | //#define NO_PRINT | ||
| 117 | |||
| 118 | /* disable action features */ | ||
| 119 | //#define NO_ACTION_LAYER | ||
| 120 | //#define NO_ACTION_TAPPING | ||
| 121 | //#define NO_ACTION_ONESHOT | ||
| 122 | |||
| 123 | /* disable these deprecated features by default */ | ||
| 124 | #define NO_ACTION_MACRO | ||
| 125 | #define NO_ACTION_FUNCTION | ||
| 126 | |||
| 127 | /* Bootmagic Lite key configuration */ | ||
| 128 | //#define BOOTMAGIC_LITE_ROW 0 | ||
| 129 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/foxlab/time80/keymaps/default/keymap.c b/keyboards/foxlab/time80/keymaps/default/keymap.c new file mode 100644 index 000000000..eb4facb50 --- /dev/null +++ b/keyboards/foxlab/time80/keymaps/default/keymap.c | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | /* Copyright 2020 Lukas Alexander | ||
| 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_all( | ||
| 20 | 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_MPRV, KC_MNXT, KC_MPLY, | ||
| 21 | 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_BSLS, KC_DEL, KC_INS, KC_HOME, KC_PGUP, | ||
| 22 | 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, KC_DEL, KC_END, KC_PGDN, | ||
| 23 | LCTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, XXXXXXX, KC_ENT, | ||
| 24 | KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(4), KC_UP, | ||
| 25 | KC_LALT, KC_LALT, KC_LGUI, LT(2, KC_SPC), MO(3), MO(3), MO(4), MO(4), KC_LEFT, KC_DOWN, KC_RGHT | ||
| 26 | ), | ||
| 27 | [1] = LAYOUT_all( | ||
| 28 | 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_MPRV, KC_MNXT, KC_MPLY, | ||
| 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_BSLS, KC_DEL, KC_INS, KC_HOME, KC_PGUP, | ||
| 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_BSPC, KC_DEL, KC_END, KC_PGDN, | ||
| 31 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, XXXXXXX, KC_ENT, | ||
| 32 | KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(4), KC_UP, | ||
| 33 | KC_LALT, KC_LALT, KC_LGUI, KC_SPC, MO(3), MO(3), MO(4), MO(4), KC_LEFT, KC_DOWN, KC_RGHT | ||
| 34 | ), | ||
| 35 | [2] = LAYOUT_all( | ||
| 36 | KC_ESC, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 37 | KC_GRV, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DEL, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 38 | KC_TAB, XXXXXXX, KC_UP, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_PSCR, KC_VOLD, KC_VOLU, KC_BSPC, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 39 | KC_LCTL, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 40 | KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MPRV, KC_MNXT, KC_MPLY, XXXXXXX, MO(4), KC_UP, | ||
| 41 | KC_LALT, KC_LALT, KC_LGUI, _______, XXXXXXX, XXXXXXX, MO(4), MO(4), KC_LEFT, KC_DOWN, KC_RGHT | ||
| 42 | ), | ||
| 43 | [3] = LAYOUT_all( | ||
| 44 | KC_ESC, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 45 | RALT(KC_N), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, RALT(KC_I), XXXXXXX, XXXXXXX, XXXXXXX, LGUI(KC_MINS), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 46 | KC_TAB, XXXXXXX, XXXXXXX, RALT(KC_SCLN), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, RALT(KC_O), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 47 | KC_LCTL, RALT(KC_A), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, RALT(KC_E), XXXXXXX, XXXXXXX, | ||
| 48 | KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, RALT(KC_C), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_RSFT, MO(4), XXXXXXX, | ||
| 49 | KC_LALT, KC_LALT, KC_LGUI, XXXXXXX, _______, _______, MO(4), MO(4), XXXXXXX, XXXXXXX, XXXXXXX | ||
| 50 | ), | ||
| 51 | [4] = LAYOUT_all( | ||
| 52 | RESET, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 53 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, TG(1), XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 54 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 55 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 56 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, | ||
| 57 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, _______, XXXXXXX, XXXXXXX, XXXXXXX | ||
| 58 | ) | ||
| 59 | }; | ||
diff --git a/keyboards/foxlab/time80/keymaps/default/readme.md b/keyboards/foxlab/time80/keymaps/default/readme.md new file mode 100644 index 000000000..bf4136282 --- /dev/null +++ b/keyboards/foxlab/time80/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for time80 | |||
diff --git a/keyboards/foxlab/time80/readme.md b/keyboards/foxlab/time80/readme.md new file mode 100644 index 000000000..66fd66b4b --- /dev/null +++ b/keyboards/foxlab/time80/readme.md | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | # time80 | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | Time is an intricate custom keyboard kit from Fox Lab, a group of | ||
| 6 | Chinese designers focused on making maximizing the potential for | ||
| 7 | design and detail in custom keyboards. Featuring an 18-piece design, | ||
| 8 | Time is the custom keyboard with the most number of parts in existence (so far). | ||
| 9 | |||
| 10 | * Keyboard Maintainer: [Lukas Alexander](https://github.com/lukelex) | ||
| 11 | * Hardware Supported: Time 80 PCB | ||
| 12 | * Hardware Availability: [Group Buy](https://geekhack.org/index.php?topic=92349.0) | ||
| 13 | |||
| 14 | Make example for this keyboard (after setting up your build environment): | ||
| 15 | |||
| 16 | make foxlab/time80:default | ||
| 17 | |||
| 18 | Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid)) | ||
| 19 | |||
| 20 | make foxlab/time80:default:flash | ||
| 21 | |||
| 22 | **Reset Key**: There are no reset switches or pads. Follow this | ||
| 23 | [guide](https://docs.qmk.fm/#/flashing_bootloadhid) | ||
| 24 | to have it flashed for the first time. Remember to add a `RESET` | ||
| 25 | key on your keymap for future endeavors. | ||
| 26 | |||
| 27 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/foxlab/time80/rules.mk b/keyboards/foxlab/time80/rules.mk new file mode 100644 index 000000000..1b61e9534 --- /dev/null +++ b/keyboards/foxlab/time80/rules.mk | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32a | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = bootloadHID | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = no # Console for debug | ||
| 14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 15 | # 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 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 18 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 19 | WS2812_DRIVER = i2c | ||
diff --git a/keyboards/foxlab/time80/time80.c b/keyboards/foxlab/time80/time80.c new file mode 100644 index 000000000..d2cf8cef2 --- /dev/null +++ b/keyboards/foxlab/time80/time80.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2020 Lukas Alexander | ||
| 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 "time80.h" | ||
diff --git a/keyboards/foxlab/time80/time80.h b/keyboards/foxlab/time80/time80.h new file mode 100644 index 000000000..f451b32f0 --- /dev/null +++ b/keyboards/foxlab/time80/time80.h | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | /* Copyright 2020 Lukas Alexander | ||
| 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 | #define LAYOUT_all( \ | ||
| 30 | k00, k02, k03, k04, k05, k07, k08, k09, k0A, k0B, k0E, k0C, k01, k61, k62, k6E, \ | ||
| 31 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, k1E, k1C, k1D, k66, k65, k64, \ | ||
| 32 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, k2E, k2C, k6C, k68, k67, \ | ||
| 33 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, k3C, k3E, \ | ||
| 34 | k40, k4D, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4A, k4B, k4E, k4C, \ | ||
| 35 | k50, k51, k52, k54, k58, k59, k5A, k5B, k5E, k5C, k57 \ | ||
| 36 | ) { \ | ||
| 37 | { k00, KC_NO, k02, k03, k04, k05, KC_NO, k07, k08, k09, k0A, k0B, k0C, KC_NO, k0E }, \ | ||
| 38 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, k1C, k1D, k1E }, \ | ||
| 39 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, k2C, KC_NO, k2E }, \ | ||
| 40 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, k3C, KC_NO, k3E }, \ | ||
| 41 | { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4A, k4B, k4C, k4D, k4E }, \ | ||
| 42 | { k50, k51, k52, KC_NO, k54, KC_NO, KC_NO, k57, k58, k59, k5A, k5B, k5C, KC_NO, k5E }, \ | ||
| 43 | { KC_NO, k61, k62, KC_NO, k64, k65, k66, k67, k68, KC_NO, KC_NO, KC_NO, k6C, KC_NO, k6E } \ | ||
| 44 | } | ||
