diff options
| author | QMK Bot <hello@qmk.fm> | 2021-08-14 15:08:27 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2021-08-14 15:08:27 +0000 |
| commit | 110a320321181a0d02f46bd0d06d15c10ed751bb (patch) | |
| tree | 98206459924c47dd92a4e7e7d36a8843f7c277ea /keyboards/ramonimbao | |
| parent | a6d77fdf27de0cbe67228961a4051a4a422eb956 (diff) | |
| parent | 209fd753cbe9d4be7f46c137df54748f38de5250 (diff) | |
| download | qmk_firmware-110a320321181a0d02f46bd0d06d15c10ed751bb.tar.gz qmk_firmware-110a320321181a0d02f46bd0d06d15c10ed751bb.zip | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/ramonimbao')
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/config.h | 152 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/info.json | 304 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/keymaps/default/keymap.c | 27 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/keymaps/iso/keymap.c | 27 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c | 51 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/readme.md | 20 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/rules.mk | 22 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/tkl_ff.c | 17 | ||||
| -rw-r--r-- | keyboards/ramonimbao/tkl_ff/tkl_ff.h | 93 |
10 files changed, 714 insertions, 0 deletions
diff --git a/keyboards/ramonimbao/tkl_ff/config.h b/keyboards/ramonimbao/tkl_ff/config.h new file mode 100644 index 000000000..ec73601f8 --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/config.h | |||
| @@ -0,0 +1,152 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 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 0x00FF | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Ramon Imbao | ||
| 27 | #define PRODUCT TKL FF | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 6 | ||
| 31 | #define MATRIX_COLS 17 | ||
| 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 { B2, B3, B7, D6, D3, D2 } | ||
| 44 | #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7, C6, B6, B5, B4, D7, D4, D5, B0, B1, D1 } | ||
| 45 | #define UNUSED_PINS | ||
| 46 | |||
| 47 | /* COL2ROW, ROW2COL */ | ||
| 48 | #define DIODE_DIRECTION COL2ROW | ||
| 49 | |||
| 50 | /* | ||
| 51 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 52 | */ | ||
| 53 | #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 54 | |||
| 55 | //#define LED_NUM_LOCK_PIN B0 | ||
| 56 | //#define LED_CAPS_LOCK_PIN B1 | ||
| 57 | //#define LED_SCROLL_LOCK_PIN B2 | ||
| 58 | //#define LED_COMPOSE_PIN B3 | ||
| 59 | //#define LED_KANA_PIN B4 | ||
| 60 | |||
| 61 | //#define BACKLIGHT_PIN B7 | ||
| 62 | //#define BACKLIGHT_LEVELS 3 | ||
| 63 | //#define BACKLIGHT_BREATHING | ||
| 64 | |||
| 65 | //#define RGB_DI_PIN E2 | ||
| 66 | //#ifdef RGB_DI_PIN | ||
| 67 | //# define RGBLED_NUM 16 | ||
| 68 | //# define RGBLIGHT_HUE_STEP 8 | ||
| 69 | //# define RGBLIGHT_SAT_STEP 8 | ||
| 70 | //# define RGBLIGHT_VAL_STEP 8 | ||
| 71 | //# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 72 | //# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 73 | /*== all animations enable ==*/ | ||
| 74 | //# define RGBLIGHT_ANIMATIONS | ||
| 75 | /*== or choose animations ==*/ | ||
| 76 | //# define RGBLIGHT_EFFECT_BREATHING | ||
| 77 | //# define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 78 | //# define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 79 | //# define RGBLIGHT_EFFECT_SNAKE | ||
| 80 | //# define RGBLIGHT_EFFECT_KNIGHT | ||
| 81 | //# define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 82 | //# define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 83 | //# define RGBLIGHT_EFFECT_RGB_TEST | ||
| 84 | //# define RGBLIGHT_EFFECT_ALTERNATING | ||
| 85 | /*== customize breathing effect ==*/ | ||
| 86 | /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
| 87 | //# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
| 88 | /*==== use exp() and sin() ====*/ | ||
| 89 | //# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
| 90 | //# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
| 91 | //#endif | ||
| 92 | |||
| 93 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 94 | #define DEBOUNCE 5 | ||
| 95 | |||
| 96 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 97 | //#define MATRIX_HAS_GHOST | ||
| 98 | |||
| 99 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 100 | #define LOCKING_SUPPORT_ENABLE | ||
| 101 | /* Locking resynchronize hack */ | ||
| 102 | #define LOCKING_RESYNC_ENABLE | ||
| 103 | |||
| 104 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 105 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 106 | */ | ||
| 107 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
| 108 | |||
| 109 | /* | ||
| 110 | * Force NKRO | ||
| 111 | * | ||
| 112 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 113 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 114 | * makefile for this to work.) | ||
| 115 | * | ||
| 116 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 117 | * until the next keyboard reset. | ||
| 118 | * | ||
| 119 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 120 | * fully operational during normal computer usage. | ||
| 121 | * | ||
| 122 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 123 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 124 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 125 | * power-up. | ||
| 126 | * | ||
| 127 | */ | ||
| 128 | //#define FORCE_NKRO | ||
| 129 | |||
| 130 | /* | ||
| 131 | * Feature disable options | ||
| 132 | * These options are also useful to firmware size reduction. | ||
| 133 | */ | ||
| 134 | |||
| 135 | /* disable debug print */ | ||
| 136 | //#define NO_DEBUG | ||
| 137 | |||
| 138 | /* disable print */ | ||
| 139 | //#define NO_PRINT | ||
| 140 | |||
| 141 | /* disable action features */ | ||
| 142 | //#define NO_ACTION_LAYER | ||
| 143 | //#define NO_ACTION_TAPPING | ||
| 144 | //#define NO_ACTION_ONESHOT | ||
| 145 | |||
| 146 | /* disable these deprecated features by default */ | ||
| 147 | #define NO_ACTION_MACRO | ||
| 148 | #define NO_ACTION_FUNCTION | ||
| 149 | |||
| 150 | /* Bootmagic Lite key configuration */ | ||
| 151 | //#define BOOTMAGIC_LITE_ROW 0 | ||
| 152 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/ramonimbao/tkl_ff/info.json b/keyboards/ramonimbao/tkl_ff/info.json new file mode 100644 index 000000000..a231cef86 --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/info.json | |||
| @@ -0,0 +1,304 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "TKL FF", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Ramon Imbao", | ||
| 5 | "width": 18.25, | ||
| 6 | "height": 6.25, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ansi": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0, "y":0}, | ||
| 11 | {"x":1.25, "y":0}, | ||
| 12 | {"x":2.25, "y":0}, | ||
| 13 | {"x":3.25, "y":0}, | ||
| 14 | {"x":4.25, "y":0}, | ||
| 15 | {"x":5.5, "y":0}, | ||
| 16 | {"x":6.5, "y":0}, | ||
| 17 | {"x":7.5, "y":0}, | ||
| 18 | {"x":8.5, "y":0}, | ||
| 19 | {"x":9.75, "y":0}, | ||
| 20 | {"x":10.75, "y":0}, | ||
| 21 | {"x":11.75, "y":0}, | ||
| 22 | {"x":12.75, "y":0}, | ||
| 23 | {"x":14, "y":0}, | ||
| 24 | {"x":15.25, "y":0}, | ||
| 25 | {"x":16.25, "y":0}, | ||
| 26 | {"x":17.25, "y":0}, | ||
| 27 | |||
| 28 | {"x":0, "y":1.25}, | ||
| 29 | {"x":1, "y":1.25}, | ||
| 30 | {"x":2, "y":1.25}, | ||
| 31 | {"x":3, "y":1.25}, | ||
| 32 | {"x":4, "y":1.25}, | ||
| 33 | {"x":5, "y":1.25}, | ||
| 34 | {"x":6, "y":1.25}, | ||
| 35 | {"x":7, "y":1.25}, | ||
| 36 | {"x":8, "y":1.25}, | ||
| 37 | {"x":9, "y":1.25}, | ||
| 38 | {"x":10, "y":1.25}, | ||
| 39 | {"x":11, "y":1.25}, | ||
| 40 | {"x":12, "y":1.25}, | ||
| 41 | {"x":13, "y":1.25, "w":2}, | ||
| 42 | {"x":15.25, "y":1.25}, | ||
| 43 | {"x":16.25, "y":1.25}, | ||
| 44 | {"x":17.25, "y":1.25}, | ||
| 45 | |||
| 46 | {"x":0, "y":2.25, "w":1.5}, | ||
| 47 | {"x":1.5, "y":2.25}, | ||
| 48 | {"x":2.5, "y":2.25}, | ||
| 49 | {"x":3.5, "y":2.25}, | ||
| 50 | {"x":4.5, "y":2.25}, | ||
| 51 | {"x":5.5, "y":2.25}, | ||
| 52 | {"x":6.5, "y":2.25}, | ||
| 53 | {"x":7.5, "y":2.25}, | ||
| 54 | {"x":8.5, "y":2.25}, | ||
| 55 | {"x":9.5, "y":2.25}, | ||
| 56 | {"x":10.5, "y":2.25}, | ||
| 57 | {"x":11.5, "y":2.25}, | ||
| 58 | {"x":12.5, "y":2.25}, | ||
| 59 | {"x":13.5, "y":2.25, "w":1.5}, | ||
| 60 | {"x":15.25, "y":2.25}, | ||
| 61 | {"x":16.25, "y":2.25}, | ||
| 62 | {"x":17.25, "y":2.25}, | ||
| 63 | |||
| 64 | {"x":0, "y":3.25, "w":1.75}, | ||
| 65 | {"x":1.75, "y":3.25}, | ||
| 66 | {"x":2.75, "y":3.25}, | ||
| 67 | {"x":3.75, "y":3.25}, | ||
| 68 | {"x":4.75, "y":3.25}, | ||
| 69 | {"x":5.75, "y":3.25}, | ||
| 70 | {"x":6.75, "y":3.25}, | ||
| 71 | {"x":7.75, "y":3.25}, | ||
| 72 | {"x":8.75, "y":3.25}, | ||
| 73 | {"x":9.75, "y":3.25}, | ||
| 74 | {"x":10.75, "y":3.25}, | ||
| 75 | {"x":11.75, "y":3.25}, | ||
| 76 | {"x":12.75, "y":3.25, "w":2.25}, | ||
| 77 | |||
| 78 | {"x":0, "y":4.25, "w":2.25}, | ||
| 79 | {"x":2.25, "y":4.25}, | ||
| 80 | {"x":3.25, "y":4.25}, | ||
| 81 | {"x":4.25, "y":4.25}, | ||
| 82 | {"x":5.25, "y":4.25}, | ||
| 83 | {"x":6.25, "y":4.25}, | ||
| 84 | {"x":7.25, "y":4.25}, | ||
| 85 | {"x":8.25, "y":4.25}, | ||
| 86 | {"x":9.25, "y":4.25}, | ||
| 87 | {"x":10.25, "y":4.25}, | ||
| 88 | {"x":11.25, "y":4.25}, | ||
| 89 | {"x":12.25, "y":4.25, "w":2.75}, | ||
| 90 | {"x":16.25, "y":4.25}, | ||
| 91 | |||
| 92 | {"x":0, "y":5.25, "w":1.25}, | ||
| 93 | {"x":1.25, "y":5.25, "w":1.25}, | ||
| 94 | {"x":2.5, "y":5.25, "w":1.25}, | ||
| 95 | {"x":3.75, "y":5.25, "w":6.25}, | ||
| 96 | {"x":10, "y":5.25, "w":1.25}, | ||
| 97 | {"x":11.25, "y":5.25, "w":1.25}, | ||
| 98 | {"x":12.5, "y":5.25, "w":1.25}, | ||
| 99 | {"x":13.75, "y":5.25, "w":1.25}, | ||
| 100 | {"x":15.25, "y":5.25}, | ||
| 101 | {"x":16.25, "y":5.25}, | ||
| 102 | {"x":17.25, "y":5.25} | ||
| 103 | ] | ||
| 104 | }, | ||
| 105 | "LAYOUT_iso": { | ||
| 106 | "layout": [ | ||
| 107 | {"x":0, "y":0}, | ||
| 108 | {"x":1.25, "y":0}, | ||
| 109 | {"x":2.25, "y":0}, | ||
| 110 | {"x":3.25, "y":0}, | ||
| 111 | {"x":4.25, "y":0}, | ||
| 112 | {"x":5.5, "y":0}, | ||
| 113 | {"x":6.5, "y":0}, | ||
| 114 | {"x":7.5, "y":0}, | ||
| 115 | {"x":8.5, "y":0}, | ||
| 116 | {"x":9.75, "y":0}, | ||
| 117 | {"x":10.75, "y":0}, | ||
| 118 | {"x":11.75, "y":0}, | ||
| 119 | {"x":12.75, "y":0}, | ||
| 120 | {"x":14, "y":0}, | ||
| 121 | {"x":15.25, "y":0}, | ||
| 122 | {"x":16.25, "y":0}, | ||
| 123 | {"x":17.25, "y":0}, | ||
| 124 | |||
| 125 | {"x":0, "y":1.25}, | ||
| 126 | {"x":1, "y":1.25}, | ||
| 127 | {"x":2, "y":1.25}, | ||
| 128 | {"x":3, "y":1.25}, | ||
| 129 | {"x":4, "y":1.25}, | ||
| 130 | {"x":5, "y":1.25}, | ||
| 131 | {"x":6, "y":1.25}, | ||
| 132 | {"x":7, "y":1.25}, | ||
| 133 | {"x":8, "y":1.25}, | ||
| 134 | {"x":9, "y":1.25}, | ||
| 135 | {"x":10, "y":1.25}, | ||
| 136 | {"x":11, "y":1.25}, | ||
| 137 | {"x":12, "y":1.25}, | ||
| 138 | {"x":13, "y":1.25, "w":2}, | ||
| 139 | {"x":15.25, "y":1.25}, | ||
| 140 | {"x":16.25, "y":1.25}, | ||
| 141 | {"x":17.25, "y":1.25}, | ||
| 142 | |||
| 143 | {"x":0, "y":2.25, "w":1.5}, | ||
| 144 | {"x":1.5, "y":2.25}, | ||
| 145 | {"x":2.5, "y":2.25}, | ||
| 146 | {"x":3.5, "y":2.25}, | ||
| 147 | {"x":4.5, "y":2.25}, | ||
| 148 | {"x":5.5, "y":2.25}, | ||
| 149 | {"x":6.5, "y":2.25}, | ||
| 150 | {"x":7.5, "y":2.25}, | ||
| 151 | {"x":8.5, "y":2.25}, | ||
| 152 | {"x":9.5, "y":2.25}, | ||
| 153 | {"x":10.5, "y":2.25}, | ||
| 154 | {"x":11.5, "y":2.25}, | ||
| 155 | {"x":12.5, "y":2.25}, | ||
| 156 | {"x":15.25, "y":2.25}, | ||
| 157 | {"x":16.25, "y":2.25}, | ||
| 158 | {"x":17.25, "y":2.25}, | ||
| 159 | |||
| 160 | {"x":0, "y":3.25, "w":1.75}, | ||
| 161 | {"x":1.75, "y":3.25}, | ||
| 162 | {"x":2.75, "y":3.25}, | ||
| 163 | {"x":3.75, "y":3.25}, | ||
| 164 | {"x":4.75, "y":3.25}, | ||
| 165 | {"x":5.75, "y":3.25}, | ||
| 166 | {"x":6.75, "y":3.25}, | ||
| 167 | {"x":7.75, "y":3.25}, | ||
| 168 | {"x":8.75, "y":3.25}, | ||
| 169 | {"x":9.75, "y":3.25}, | ||
| 170 | {"x":10.75, "y":3.25}, | ||
| 171 | {"x":11.75, "y":3.25}, | ||
| 172 | {"x":12.75, "y":3.25}, | ||
| 173 | {"x":13.75, "y":2.25, "w":1.25, "h":2}, | ||
| 174 | |||
| 175 | {"x":0, "y":4.25, "w":1.25}, | ||
| 176 | {"x":1.25, "y":4.25}, | ||
| 177 | {"x":2.25, "y":4.25}, | ||
| 178 | {"x":3.25, "y":4.25}, | ||
| 179 | {"x":4.25, "y":4.25}, | ||
| 180 | {"x":5.25, "y":4.25}, | ||
| 181 | {"x":6.25, "y":4.25}, | ||
| 182 | {"x":7.25, "y":4.25}, | ||
| 183 | {"x":8.25, "y":4.25}, | ||
| 184 | {"x":9.25, "y":4.25}, | ||
| 185 | {"x":10.25, "y":4.25}, | ||
| 186 | {"x":11.25, "y":4.25}, | ||
| 187 | {"x":12.25, "y":4.25, "w":2.75}, | ||
| 188 | {"x":16.25, "y":4.25}, | ||
| 189 | |||
| 190 | {"x":0, "y":5.25, "w":1.25}, | ||
| 191 | {"x":1.25, "y":5.25, "w":1.25}, | ||
| 192 | {"x":2.5, "y":5.25, "w":1.25}, | ||
| 193 | {"x":3.75, "y":5.25, "w":6.25}, | ||
| 194 | {"x":10, "y":5.25, "w":1.25}, | ||
| 195 | {"x":11.25, "y":5.25, "w":1.25}, | ||
| 196 | {"x":12.5, "y":5.25, "w":1.25}, | ||
| 197 | {"x":13.75, "y":5.25, "w":1.25}, | ||
| 198 | {"x":15.25, "y":5.25}, | ||
| 199 | {"x":16.25, "y":5.25}, | ||
| 200 | {"x":17.25, "y":5.25} | ||
| 201 | ] | ||
| 202 | }, | ||
| 203 | "LAYOUT_all": { | ||
| 204 | "layout": [ | ||
| 205 | {"x":0, "y":0}, | ||
| 206 | {"x":1.25, "y":0}, | ||
| 207 | {"x":2.25, "y":0}, | ||
| 208 | {"x":3.25, "y":0}, | ||
| 209 | {"x":4.25, "y":0}, | ||
| 210 | {"x":5.5, "y":0}, | ||
| 211 | {"x":6.5, "y":0}, | ||
| 212 | {"x":7.5, "y":0}, | ||
| 213 | {"x":8.5, "y":0}, | ||
| 214 | {"x":9.75, "y":0}, | ||
| 215 | {"x":10.75, "y":0}, | ||
| 216 | {"x":11.75, "y":0}, | ||
| 217 | {"x":12.75, "y":0}, | ||
| 218 | {"x":14, "y":0}, | ||
| 219 | {"x":15.25, "y":0}, | ||
| 220 | {"x":16.25, "y":0}, | ||
| 221 | {"x":17.25, "y":0}, | ||
| 222 | |||
| 223 | {"x":0, "y":1.25}, | ||
| 224 | {"x":1, "y":1.25}, | ||
| 225 | {"x":2, "y":1.25}, | ||
| 226 | {"x":3, "y":1.25}, | ||
| 227 | {"x":4, "y":1.25}, | ||
| 228 | {"x":5, "y":1.25}, | ||
| 229 | {"x":6, "y":1.25}, | ||
| 230 | {"x":7, "y":1.25}, | ||
| 231 | {"x":8, "y":1.25}, | ||
| 232 | {"x":9, "y":1.25}, | ||
| 233 | {"x":10, "y":1.25}, | ||
| 234 | {"x":11, "y":1.25}, | ||
| 235 | {"x":12, "y":1.25}, | ||
| 236 | {"x":13, "y":1.25}, | ||
| 237 | {"x":14, "y":1.25}, | ||
| 238 | {"x":15.25, "y":1.25}, | ||
| 239 | {"x":16.25, "y":1.25}, | ||
| 240 | {"x":17.25, "y":1.25}, | ||
| 241 | |||
| 242 | {"x":0, "y":2.25, "w":1.5}, | ||
| 243 | {"x":1.5, "y":2.25}, | ||
| 244 | {"x":2.5, "y":2.25}, | ||
| 245 | {"x":3.5, "y":2.25}, | ||
| 246 | {"x":4.5, "y":2.25}, | ||
| 247 | {"x":5.5, "y":2.25}, | ||
| 248 | {"x":6.5, "y":2.25}, | ||
| 249 | {"x":7.5, "y":2.25}, | ||
| 250 | {"x":8.5, "y":2.25}, | ||
| 251 | {"x":9.5, "y":2.25}, | ||
| 252 | {"x":10.5, "y":2.25}, | ||
| 253 | {"x":11.5, "y":2.25}, | ||
| 254 | {"x":12.5, "y":2.25}, | ||
| 255 | {"x":13.5, "y":2.25, "w":1.5}, | ||
| 256 | {"x":15.25, "y":2.25}, | ||
| 257 | {"x":16.25, "y":2.25}, | ||
| 258 | {"x":17.25, "y":2.25}, | ||
| 259 | |||
| 260 | {"x":0, "y":3.25, "w":1.75}, | ||
| 261 | {"x":1.75, "y":3.25}, | ||
| 262 | {"x":2.75, "y":3.25}, | ||
| 263 | {"x":3.75, "y":3.25}, | ||
| 264 | {"x":4.75, "y":3.25}, | ||
| 265 | {"x":5.75, "y":3.25}, | ||
| 266 | {"x":6.75, "y":3.25}, | ||
| 267 | {"x":7.75, "y":3.25}, | ||
| 268 | {"x":8.75, "y":3.25}, | ||
| 269 | {"x":9.75, "y":3.25}, | ||
| 270 | {"x":10.75, "y":3.25}, | ||
| 271 | {"x":11.75, "y":3.25}, | ||
| 272 | {"x":12.75, "y":3.25, "w":2.25}, | ||
| 273 | |||
| 274 | {"x":0, "y":4.25, "w":1.25}, | ||
| 275 | {"x":1.25, "y":4.25}, | ||
| 276 | {"x":2.25, "y":4.25}, | ||
| 277 | {"x":3.25, "y":4.25}, | ||
| 278 | {"x":4.25, "y":4.25}, | ||
| 279 | {"x":5.25, "y":4.25}, | ||
| 280 | {"x":6.25, "y":4.25}, | ||
| 281 | {"x":7.25, "y":4.25}, | ||
| 282 | {"x":8.25, "y":4.25}, | ||
| 283 | {"x":9.25, "y":4.25}, | ||
| 284 | {"x":10.25, "y":4.25}, | ||
| 285 | {"x":11.25, "y":4.25}, | ||
| 286 | {"x":12.25, "y":4.25, "w":1.75}, | ||
| 287 | {"x":14, "y":4.25}, | ||
| 288 | {"x":16.25, "y":4.25}, | ||
| 289 | |||
| 290 | {"x":0, "y":5.25, "w":1.25}, | ||
| 291 | {"x":1.25, "y":5.25, "w":1.25}, | ||
| 292 | {"x":2.5, "y":5.25, "w":1.25}, | ||
| 293 | {"x":3.75, "y":5.25, "w":6.25}, | ||
| 294 | {"x":10, "y":5.25, "w":1.25}, | ||
| 295 | {"x":11.25, "y":5.25, "w":1.25}, | ||
| 296 | {"x":12.5, "y":5.25, "w":1.25}, | ||
| 297 | {"x":13.75, "y":5.25, "w":1.25}, | ||
| 298 | {"x":15.25, "y":5.25}, | ||
| 299 | {"x":16.25, "y":5.25}, | ||
| 300 | {"x":17.25, "y":5.25} | ||
| 301 | ] | ||
| 302 | } | ||
| 303 | } | ||
| 304 | } | ||
diff --git a/keyboards/ramonimbao/tkl_ff/keymaps/default/keymap.c b/keyboards/ramonimbao/tkl_ff/keymaps/default/keymap.c new file mode 100644 index 000000000..1d8b938fd --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/keymaps/default/keymap.c | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* Copyright 2021 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_ansi( | ||
| 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_F13, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 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_BSPC, 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_BSLS, KC_DEL, KC_END, KC_PGDN, | ||
| 23 | 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, | ||
| 24 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, | ||
| 25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 26 | ) | ||
| 27 | }; | ||
diff --git a/keyboards/ramonimbao/tkl_ff/keymaps/iso/keymap.c b/keyboards/ramonimbao/tkl_ff/keymaps/iso/keymap.c new file mode 100644 index 000000000..2729e390d --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/keymaps/iso/keymap.c | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* Copyright 2021 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_iso( | ||
| 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_F13, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 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_BSPC, 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_DEL, KC_END, KC_PGDN, | ||
| 23 | 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, | ||
| 24 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, | ||
| 25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 26 | ) | ||
| 27 | }; | ||
diff --git a/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c b/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c new file mode 100644 index 000000000..d46f3aade --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | /* Copyright 2021 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_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_F13, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 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_BSPC, KC_BSPC, 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_BSLS, KC_DEL, KC_END, KC_PGDN, | ||
| 23 | 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, | ||
| 24 | KC_LSFT, KC_NO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_NO, KC_UP, | ||
| 25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 26 | ), | ||
| 27 | [1] = LAYOUT_all( | ||
| 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 33 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 34 | ), | ||
| 35 | [2] = LAYOUT_all( | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 40 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 42 | ), | ||
| 43 | [3] = LAYOUT_all( | ||
| 44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 47 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 49 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 50 | ) | ||
| 51 | }; | ||
diff --git a/keyboards/ramonimbao/tkl_ff/keymaps/via/rules.mk b/keyboards/ramonimbao/tkl_ff/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/ramonimbao/tkl_ff/readme.md b/keyboards/ramonimbao/tkl_ff/readme.md new file mode 100644 index 000000000..06a64210b --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/readme.md | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | # TKL-FF | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A TKL PCB made for the Geonworks Frog keyboard that supports both F12 and F13. | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [Ramon Imbao](https://github.com/ramonimbao) | ||
| 8 | * Hardware Supported: ATmega32u4 | ||
| 9 | |||
| 10 | Make example for this keyboard (after setting up your build environment): | ||
| 11 | |||
| 12 | make ramonimbao/tkl_ff:default | ||
| 13 | |||
| 14 | To get to the bootloader, simply press the reset button located at the back of the PCB. You can then flash new firmware onto it. | ||
| 15 | |||
| 16 | Flashing example for this keyboard: | ||
| 17 | |||
| 18 | make ramonimbao/tkl_ff:default:flash | ||
| 19 | |||
| 20 | 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/tkl_ff/rules.mk b/keyboards/ramonimbao/tkl_ff/rules.mk new file mode 100644 index 000000000..5c0d8f307 --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/rules.mk | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 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 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 18 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 22 | AUDIO_ENABLE = no # Audio output | ||
diff --git a/keyboards/ramonimbao/tkl_ff/tkl_ff.c b/keyboards/ramonimbao/tkl_ff/tkl_ff.c new file mode 100644 index 000000000..4a4b7c204 --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/tkl_ff.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2021 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 "tkl_ff.h" | ||
diff --git a/keyboards/ramonimbao/tkl_ff/tkl_ff.h b/keyboards/ramonimbao/tkl_ff/tkl_ff.h new file mode 100644 index 000000000..2fc2a9894 --- /dev/null +++ b/keyboards/ramonimbao/tkl_ff/tkl_ff.h | |||
| @@ -0,0 +1,93 @@ | |||
| 1 | /* Copyright 2021 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 ___ KC_NO | ||
| 31 | |||
| 32 | // ANSI layout | ||
| 33 | // Full backspace | ||
| 34 | // Full right shift | ||
| 35 | // Full left shift | ||
| 36 | // 6.25u bottom row | ||
| 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, k3c, \ | ||
| 42 | k40, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, k4f, \ | ||
| 43 | k50, k51, k52, k57, 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, k3c, ___, ___, ___, ___ }, \ | ||
| 49 | { k40, ___, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, ___, ___, k4f, ___ }, \ | ||
| 50 | { k50, k51, k52, ___, ___, ___, ___, k57, ___, ___, k5a, k5b, k5c, k5d, k5e, k5f, k5g }, \ | ||
| 51 | } | ||
| 52 | |||
| 53 | // ISO layout | ||
| 54 | // Full backspace | ||
| 55 | // Full right shift | ||
| 56 | // Split left shift | ||
| 57 | // 6.25u bottom row | ||
| 58 | #define LAYOUT_iso( \ | ||
| 59 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g, \ | ||
| 60 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g, \ | ||
| 61 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2e, k2f, k2g, \ | ||
| 62 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k2d, \ | ||
| 63 | k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, k4f, \ | ||
| 64 | k50, k51, k52, k57, k5a, k5b, k5c, k5d, k5e, k5f, k5g \ | ||
| 65 | ) { \ | ||
| 66 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g }, \ | ||
| 67 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g }, \ | ||
| 68 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g }, \ | ||
| 69 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, ___, ___, ___, ___ }, \ | ||
| 70 | { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, ___, ___, k4f, ___ }, \ | ||
| 71 | { k50, k51, k52, ___, ___, ___, ___, k57, ___, ___, k5a, k5b, k5c, k5d, k5e, k5f, k5g }, \ | ||
| 72 | } | ||
| 73 | |||
| 74 | // Layout for VIA | ||
| 75 | // Split backspace | ||
| 76 | // Split left shift | ||
| 77 | // Split right shift | ||
| 78 | // 6.25u bottom row | ||
| 79 | #define LAYOUT_all( \ | ||
| 80 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g, \ | ||
| 81 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k3d, k1e, k1f, k1g, \ | ||
| 82 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g, \ | ||
| 83 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, \ | ||
| 84 | k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, k4d, k4f, \ | ||
| 85 | k50, k51, k52, k57, k5a, k5b, k5c, k5d, k5e, k5f, k5g \ | ||
| 86 | ) { \ | ||
| 87 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g }, \ | ||
| 88 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g }, \ | ||
| 89 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g }, \ | ||
| 90 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, ___, ___, ___ }, \ | ||
| 91 | { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, k4d, ___, k4f, ___ }, \ | ||
| 92 | { k50, k51, k52, ___, ___, ___, ___, k57, ___, ___, k5a, k5b, k5c, k5d, k5e, k5f, k5g } \ | ||
| 93 | } | ||
