diff options
Diffstat (limited to 'keyboards/absinthe')
| -rw-r--r-- | keyboards/absinthe/absinthe.c | 17 | ||||
| -rw-r--r-- | keyboards/absinthe/absinthe.h | 68 | ||||
| -rw-r--r-- | keyboards/absinthe/config.h | 102 | ||||
| -rw-r--r-- | keyboards/absinthe/info.json | 150 | ||||
| -rw-r--r-- | keyboards/absinthe/keymaps/ansi/config.h | 19 | ||||
| -rw-r--r-- | keyboards/absinthe/keymaps/ansi/keymap.c | 32 | ||||
| -rw-r--r-- | keyboards/absinthe/keymaps/ansi/readme.md | 3 | ||||
| -rw-r--r-- | keyboards/absinthe/keymaps/default/config.h | 19 | ||||
| -rw-r--r-- | keyboards/absinthe/keymaps/default/keymap.c | 42 | ||||
| -rw-r--r-- | keyboards/absinthe/keymaps/default/readme.md | 6 | ||||
| -rw-r--r-- | keyboards/absinthe/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/absinthe/rules.mk | 45 |
12 files changed, 518 insertions, 0 deletions
diff --git a/keyboards/absinthe/absinthe.c b/keyboards/absinthe/absinthe.c new file mode 100644 index 000000000..502139ed0 --- /dev/null +++ b/keyboards/absinthe/absinthe.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2020 cfbender | ||
| 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 "absinthe.h" | ||
diff --git a/keyboards/absinthe/absinthe.h b/keyboards/absinthe/absinthe.h new file mode 100644 index 000000000..890aff643 --- /dev/null +++ b/keyboards/absinthe/absinthe.h | |||
| @@ -0,0 +1,68 @@ | |||
| 1 | /* Copyright 2020 cfbender | ||
| 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 | #define XXX KC_NO | ||
| 20 | |||
| 21 | #include "quantum.h" | ||
| 22 | |||
| 23 | /* This is a shortcut to help you visually see your layout. | ||
| 24 | * | ||
| 25 | * The first section contains all of the arguments representing the physical | ||
| 26 | * layout of the board and position of the keys. | ||
| 27 | * | ||
| 28 | * The second converts the arguments into a two-dimensional array which | ||
| 29 | * represents the switch matrix. | ||
| 30 | */ | ||
| 31 | #define LAYOUT_default( \ | ||
| 32 | K00, K10, K01, K11, K02, K12, K03, K13, K04, K14, K05, K15, K06, K16, K07, K17, K08, K18, \ | ||
| 33 | K20, K21, K31, K22, K32, K23, K33, K24, K34, K25, K35, K26, K36, K27, K37, K28, K38, \ | ||
| 34 | K40, K41, K51, K42, K52, K43, K53, K44, K54, K45, K55, K46, K56, \ | ||
| 35 | K60, K61, K71, K62, K72, K63, K73, K64, K74, K65, K75, K66, K67, K68, \ | ||
| 36 | K80, K81, K82, K83, K76, K86, K87, K77, K88, K78 \ | ||
| 37 | ) \ | ||
| 38 | { \ | ||
| 39 | { K00, K01, K02, K03, K04, K05, K06, K07, K08 },\ | ||
| 40 | { K10, K11, K12, K13, K14, K15, K16, K17, K18 },\ | ||
| 41 | { K20, K21, K22, K23, K24, K25, K26, K27, K28 },\ | ||
| 42 | { XXX, K31, K32, K33, K34, K35, K36, K37, K38 },\ | ||
| 43 | { K40, K41, K42, K43, K44, K45, K46, XXX, XXX },\ | ||
| 44 | { XXX, K51, K52, K53, K54, K55, K56, XXX, XXX },\ | ||
| 45 | { K60, K61, K62, K63, K64, K65, K66, K67, K68 },\ | ||
| 46 | { XXX, K71, K72, K73, K74, K75, K76, K77, K78 },\ | ||
| 47 | { K80, K81, K82, K83, XXX, XXX, K86, K87, K88 } \ | ||
| 48 | } | ||
| 49 | |||
| 50 | #define LAYOUT_ansi( \ | ||
| 51 | K00, K10, K01, K11, K02, K12, K03, K13, K04, K14, K05, K15, K06, K16, K17, K08, K18, \ | ||
| 52 | K20, K21, K31, K22, K32, K23, K33, K24, K34, K25, K35, K26, K36, K27, K37, K28, K38, \ | ||
| 53 | K40, K41, K51, K42, K52, K43, K53, K44, K54, K45, K55, K46, K56, \ | ||
| 54 | K60, K61, K71, K62, K72, K63, K73, K64, K74, K65, K75, K66, K68, \ | ||
| 55 | K80, K81, K82, K83, K85, K76, K86, K87, K77, K88, K78 \ | ||
| 56 | ) \ | ||
| 57 | { \ | ||
| 58 | { K00, K01, K02, K03, K04, K05, K06, XXX, K08 },\ | ||
| 59 | { K10, K11, K12, K13, K14, K15, K16, K17, K18 },\ | ||
| 60 | { K20, K21, K22, K23, K24, K25, K26, K27, K28 },\ | ||
| 61 | { XXX, K31, K32, K33, K34, K35, K36, K37, K38 },\ | ||
| 62 | { K40, K41, K42, K43, K44, K45, K46, XXX, XXX },\ | ||
| 63 | { XXX, K51, K52, K53, K54, K55, K56, XXX, XXX },\ | ||
| 64 | { K60, K61, K62, K63, K64, K65, K66, XXX, K68 },\ | ||
| 65 | { XXX, K71, K72, K73, K74, K75, K76, K77, K78 },\ | ||
| 66 | { K80, K81, K82, K83, XXX, K85, K86, K87, K88 } \ | ||
| 67 | } | ||
| 68 | |||
diff --git a/keyboards/absinthe/config.h b/keyboards/absinthe/config.h new file mode 100644 index 000000000..939b3d065 --- /dev/null +++ b/keyboards/absinthe/config.h | |||
| @@ -0,0 +1,102 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 cfbender | ||
| 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 0xB00B | ||
| 24 | #define PRODUCT_ID 0xFEED | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER cfbender | ||
| 27 | #define PRODUCT absinthe | ||
| 28 | #define DESCRIPTION An F-row-less TKL | ||
| 29 | |||
| 30 | /* key matrix size */ | ||
| 31 | #define MATRIX_ROWS 9 | ||
| 32 | #define MATRIX_COLS 9 | ||
| 33 | |||
| 34 | /* | ||
| 35 | * Keyboard Matrix Assignments | ||
| 36 | * | ||
| 37 | * Change this to how you wired your keyboard | ||
| 38 | * COLS: AVR pins used for columns, left to right | ||
| 39 | * ROWS: AVR pins used for rows, top to bottom | ||
| 40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 42 | * | ||
| 43 | */ | ||
| 44 | #define MATRIX_ROW_PINS { D2, D1, B6, D4, C6, D7, E6, B4, B5 } | ||
| 45 | #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, D3, D0 } | ||
| 46 | #define UNUSED_PINS | ||
| 47 | |||
| 48 | #define ENCODERS_PAD_A { D5 } | ||
| 49 | #define ENCODERS_PAD_B { B7 } | ||
| 50 | |||
| 51 | #define ENCODER_DIRECTION_FLIP | ||
| 52 | |||
| 53 | /* COL2ROW, ROW2COL*/ | ||
| 54 | #define DIODE_DIRECTION COL2ROW | ||
| 55 | |||
| 56 | /* | ||
| 57 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 58 | */ | ||
| 59 | //#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 60 | |||
| 61 | // #define BACKLIGHT_PIN B7 | ||
| 62 | // #define BACKLIGHT_BREATHING | ||
| 63 | // #define BACKLIGHT_LEVELS 3 | ||
| 64 | |||
| 65 | #define RGB_DI_PIN B0 | ||
| 66 | #ifdef RGB_DI_PIN | ||
| 67 | #define RGBLED_NUM 32 | ||
| 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 | ||
diff --git a/keyboards/absinthe/info.json b/keyboards/absinthe/info.json new file mode 100644 index 000000000..290664106 --- /dev/null +++ b/keyboards/absinthe/info.json | |||
| @@ -0,0 +1,150 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "absinthe", | ||
| 3 | "url": "https://github.com/cfbender/keyboards/tree/master/absinthe", | ||
| 4 | "maintainer": "cfbender", | ||
| 5 | "width": 18.25, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_default": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"Esc", "x":0, "y":0}, | ||
| 11 | {"label":"!", "x":1, "y":0}, | ||
| 12 | {"label":"@", "x":2, "y":0}, | ||
| 13 | {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, | ||
| 14 | {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, | ||
| 15 | {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, | ||
| 16 | {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, | ||
| 17 | {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, | ||
| 18 | {"label":"|", "x":13, "y":0}, {"label":"~", "x":14, "y":0}, | ||
| 19 | {"label":"Insert", "x":15.25, "y":0}, | ||
| 20 | {"label":"Home", "x":16.25, "y":0}, | ||
| 21 | {"label":"PgUp", "x":17.25, "y":0}, | ||
| 22 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
| 23 | {"label":"Q", "x":1.5, "y":1}, | ||
| 24 | {"label":"W", "x":2.5, "y":1}, | ||
| 25 | {"label":"E", "x":3.5, "y":1}, | ||
| 26 | {"label":"R", "x":4.5, "y":1}, | ||
| 27 | {"label":"T", "x":5.5, "y":1}, | ||
| 28 | {"label":"Y", "x":6.5, "y":1}, | ||
| 29 | {"label":"U", "x":7.5, "y":1}, | ||
| 30 | {"label":"I", "x":8.5, "y":1}, | ||
| 31 | {"label":"O", "x":9.5, "y":1}, | ||
| 32 | {"label":"P", "x":10.5, "y":1}, | ||
| 33 | {"label":"{", "x":11.5, "y":1}, | ||
| 34 | {"label":"}", "x":12.5, "y":1}, | ||
| 35 | {"label":"Backspace", "x":13.5, "y":1, "w":1.5}, | ||
| 36 | {"label":"Delete", "x":15.25, "y":1}, | ||
| 37 | {"label":"End", "x":16.25, "y":1}, | ||
| 38 | {"label":"PgDn", "x":17.25, "y":1}, | ||
| 39 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
| 40 | {"label":"A", "x":1.75, "y":2}, | ||
| 41 | {"label":"S", "x":2.75, "y":2}, | ||
| 42 | {"label":"D", "x":3.75, "y":2}, | ||
| 43 | {"label":"F", "x":4.75, "y":2}, | ||
| 44 | {"label":"G", "x":5.75, "y":2}, | ||
| 45 | {"label":"H", "x":6.75, "y":2}, | ||
| 46 | {"label":"J", "x":7.75, "y":2}, | ||
| 47 | {"label":"K", "x":8.75, "y":2}, | ||
| 48 | {"label":"L", "x":9.75, "y":2}, | ||
| 49 | {"label":":", "x":10.75, "y":2}, | ||
| 50 | {"label":"\"", "x":11.75, "y":2}, | ||
| 51 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
| 52 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
| 53 | {"label":"Z", "x":2.25, "y":3}, | ||
| 54 | {"label":"X", "x":3.25, "y":3}, | ||
| 55 | {"label":"C", "x":4.25, "y":3}, | ||
| 56 | {"label":"V", "x":5.25, "y":3}, | ||
| 57 | {"label":"B", "x":6.25, "y":3}, | ||
| 58 | {"label":"N", "x":7.25, "y":3}, | ||
| 59 | {"label":"M", "x":8.25, "y":3}, | ||
| 60 | {"label":"<", "x":9.25, "y":3}, | ||
| 61 | {"label":">", "x":10.25, "y":3}, | ||
| 62 | {"label":"?", "x":11.25, "y":3}, | ||
| 63 | {"label":"Shift", "x":12.25, "y":3, "w":1.75}, | ||
| 64 | {"label":"MO(1)", "x":14, "y":3}, | ||
| 65 | {"label":"\u2191", "x":16.25, "y":3}, | ||
| 66 | {"label":"Ctrl", "x":0, "y":4, "w":1.5}, | ||
| 67 | {"label":"Win", "x":1.5, "y":4}, | ||
| 68 | {"label":"Alt", "x":2.5, "y":4, "w":1.5}, | ||
| 69 | {"x":4, "y":4, "w":7}, | ||
| 70 | {"label":"Alt", "x":11, "y":4, "w":1.5}, | ||
| 71 | {"label":"Win", "x":12.5, "y":4}, | ||
| 72 | {"label":"Ctrl", "x":13.5, "y":4, "w":1.5}, | ||
| 73 | {"label":"\u2190", "x":15.25, "y":4}, | ||
| 74 | {"label":"\u2193", "x":16.25, "y":4}, {"label":"\u2192", "x":17.25, "y":4}] | ||
| 75 | }, | ||
| 76 | "LAYOUT_ansi": { | ||
| 77 | "layout": [{"label":"Esc", "x":0, "y":0}, | ||
| 78 | {"label":"!", "x":1, "y":0}, | ||
| 79 | {"label":"@", "x":2, "y":0}, | ||
| 80 | {"label":"#", "x":3, "y":0}, | ||
| 81 | {"label":"$", "x":4, "y":0}, | ||
| 82 | {"label":"%", "x":5, "y":0}, | ||
| 83 | {"label":"^", "x":6, "y":0}, | ||
| 84 | {"label":"&", "x":7, "y":0}, | ||
| 85 | {"label":"*", "x":8, "y":0}, | ||
| 86 | {"label":"(", "x":9, "y":0}, | ||
| 87 | {"label":")", "x":10, "y":0}, | ||
| 88 | {"label":"_", "x":11, "y":0}, | ||
| 89 | {"label":"+", "x":12, "y":0}, | ||
| 90 | {"label":"Backspace", "x":13, "y":0, "w":2}, | ||
| 91 | {"label":"Insert", "x":15.25, "y":0}, | ||
| 92 | {"label":"Home", "x":16.25, "y":0}, | ||
| 93 | {"label":"PgUp", "x":17.25, "y":0}, | ||
| 94 | {"label":"Tab", "x":0, "y":1, "w":1.5}, | ||
| 95 | {"label":"Q", "x":1.5, "y":1}, | ||
| 96 | {"label":"W", "x":2.5, "y":1}, | ||
| 97 | {"label":"E", "x":3.5, "y":1}, | ||
| 98 | {"label":"R", "x":4.5, "y":1}, | ||
| 99 | {"label":"T", "x":5.5, "y":1}, | ||
| 100 | {"label":"Y", "x":6.5, "y":1}, | ||
| 101 | {"label":"U", "x":7.5, "y":1}, | ||
| 102 | {"label":"I", "x":8.5, "y":1}, | ||
| 103 | {"label":"O", "x":9.5, "y":1}, | ||
| 104 | {"label":"P", "x":10.5, "y":1}, | ||
| 105 | {"label":"{", "x":11.5, "y":1}, | ||
| 106 | {"label":"}", "x":12.5, "y":1}, | ||
| 107 | {"label":"|", "x":13.5, "y":1, "w":1.5}, | ||
| 108 | {"label":"Delete", "x":15.25, "y":1}, | ||
| 109 | {"label":"End", "x":16.25, "y":1}, | ||
| 110 | {"label":"PgDn", "x":17.25, "y":1}, | ||
| 111 | {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, | ||
| 112 | {"label":"A", "x":1.75, "y":2}, | ||
| 113 | {"label":"S", "x":2.75, "y":2}, | ||
| 114 | {"label":"D", "x":3.75, "y":2}, | ||
| 115 | {"label":"F", "x":4.75, "y":2}, | ||
| 116 | {"label":"G", "x":5.75, "y":2}, | ||
| 117 | {"label":"H", "x":6.75, "y":2}, | ||
| 118 | {"label":"J", "x":7.75, "y":2}, | ||
| 119 | {"label":"K", "x":8.75, "y":2}, | ||
| 120 | {"label":"L", "x":9.75, "y":2}, | ||
| 121 | {"label":":", "x":10.75, "y":2}, | ||
| 122 | {"label":"\"", "x":11.75, "y":2}, | ||
| 123 | {"label":"Enter", "x":12.75, "y":2, "w":2.25}, | ||
| 124 | {"label":"Shift", "x":0, "y":3, "w":2.25}, | ||
| 125 | {"label":"Z", "x":2.25, "y":3}, | ||
| 126 | {"label":"X", "x":3.25, "y":3}, | ||
| 127 | {"label":"C", "x":4.25, "y":3}, | ||
| 128 | {"label":"V", "x":5.25, "y":3}, | ||
| 129 | {"label":"B", "x":6.25, "y":3}, | ||
| 130 | {"label":"N", "x":7.25, "y":3}, | ||
| 131 | {"label":"M", "x":8.25, "y":3}, | ||
| 132 | {"label":"<", "x":9.25, "y":3}, | ||
| 133 | {"label":">", "x":10.25, "y":3}, | ||
| 134 | {"label":"?", "x":11.25, "y":3}, | ||
| 135 | {"label":"Shift", "x":12.25, "y":3, "w":2.75}, | ||
| 136 | {"label":"\u2191", "x":16.25, "y":3}, | ||
| 137 | {"label":"Ctrl", "x":0, "y":4, "w":1.25}, | ||
| 138 | {"label":"Win", "x":1.25, "y":4, "w":1.25}, | ||
| 139 | {"label":"Alt", "x":2.5, "y":4, "w":1.25}, | ||
| 140 | {"x":3.75, "y":4, "w":6.25}, | ||
| 141 | {"label":"Alt", "x":10, "y":4, "w":1.25}, | ||
| 142 | {"label":"Win", "x":11.25, "y":4, "w":1.25}, | ||
| 143 | {"label":"Menu", "x":12.5, "y":4, "w":1.25}, | ||
| 144 | {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}, | ||
| 145 | {"label":"\u2190", "x":15.25, "y":4}, | ||
| 146 | {"label":"\u2193", "x":16.25, "y":4}, | ||
| 147 | {"label":"\u2192", "x":17.25, "y":4}] | ||
| 148 | } | ||
| 149 | } | ||
| 150 | } | ||
diff --git a/keyboards/absinthe/keymaps/ansi/config.h b/keyboards/absinthe/keymaps/ansi/config.h new file mode 100644 index 000000000..102e290a4 --- /dev/null +++ b/keyboards/absinthe/keymaps/ansi/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* Copyright 2020 cfbender | ||
| 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 | // place overrides here | ||
diff --git a/keyboards/absinthe/keymaps/ansi/keymap.c b/keyboards/absinthe/keymaps/ansi/keymap.c new file mode 100644 index 000000000..2177f1814 --- /dev/null +++ b/keyboards/absinthe/keymaps/ansi/keymap.c | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* Copyright 2020 cfbender | ||
| 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_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, | ||
| 21 | 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, | ||
| 22 | 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_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, | ||
| 24 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT), | ||
| 25 | |||
| 26 | [1] = LAYOUT_ansi( | ||
| 27 | KC_TRNS, 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_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 29 | KC_TRNS, RGB_TOG, RGB_RMOD, RGB_MOD, RGB_HUD,RGB_HUI,RGB_SAD,RGB_SAI,RGB_VAD,RGB_VAI, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 30 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLU, | ||
| 31 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_TRNS) | ||
| 32 | }; | ||
diff --git a/keyboards/absinthe/keymaps/ansi/readme.md b/keyboards/absinthe/keymaps/ansi/readme.md new file mode 100644 index 000000000..e88d0cf9d --- /dev/null +++ b/keyboards/absinthe/keymaps/ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # The all ANSI keymap for absinthe | ||
| 2 | |||
| 3 |  | ||
diff --git a/keyboards/absinthe/keymaps/default/config.h b/keyboards/absinthe/keymaps/default/config.h new file mode 100644 index 000000000..102e290a4 --- /dev/null +++ b/keyboards/absinthe/keymaps/default/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* Copyright 2020 cfbender | ||
| 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 | // place overrides here | ||
diff --git a/keyboards/absinthe/keymaps/default/keymap.c b/keyboards/absinthe/keymaps/default/keymap.c new file mode 100644 index 000000000..d6c4549c4 --- /dev/null +++ b/keyboards/absinthe/keymaps/default/keymap.c | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* Copyright 2020 cfbender | ||
| 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_default( | ||
| 20 | KC_ESC, 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_GRV, KC_INS, KC_HOME, KC_PGUP, | ||
| 21 | 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, | ||
| 22 | KC_LCTL, 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_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1), KC_UP, | ||
| 24 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT), | ||
| 25 | |||
| 26 | [1] = LAYOUT_default( | ||
| 27 | KC_TRNS, 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_TRNS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 29 | KC_TRNS, RGB_TOG, RGB_RMOD, RGB_MOD, RGB_HUD,RGB_HUI,RGB_SAD,RGB_SAI,RGB_VAD,RGB_VAI, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 30 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLU, | ||
| 31 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_TRNS) | ||
| 32 | }; | ||
| 33 | |||
| 34 | void encoder_update_user(uint8_t index, bool clockwise) { | ||
| 35 | if (index == 0) { /* First encoder */ | ||
| 36 | if (clockwise) { | ||
| 37 | tap_code(KC_VOLU); | ||
| 38 | } else { | ||
| 39 | tap_code(KC_VOLD); | ||
| 40 | } | ||
| 41 | } | ||
| 42 | } | ||
diff --git a/keyboards/absinthe/keymaps/default/readme.md b/keyboards/absinthe/keymaps/default/readme.md new file mode 100644 index 000000000..f9ec78d7b --- /dev/null +++ b/keyboards/absinthe/keymaps/default/readme.md | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | # The default keymap for absinthe | ||
| 2 | |||
| 3 | |||
| 4 | Tsangan HHKB style with split backspace and split right shift. | ||
| 5 | |||
| 6 |  | ||
diff --git a/keyboards/absinthe/readme.md b/keyboards/absinthe/readme.md new file mode 100644 index 000000000..f99d3649f --- /dev/null +++ b/keyboards/absinthe/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # absinthe | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A budget-friendly F-rowless TKL with a rotary encoder | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [cfbender](https://cfbender.design) | ||
| 8 | * Hardware Supported: Absinthe PCB, Elite-C (for rotary encoder support - alternatively you can use a Pro Micro without an encoder) | ||
| 9 | * Hardware Availability: [GitHub](https://github.com/cfbender/keyboards/tree/master/absinthe) | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make absinthe: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/absinthe/rules.mk b/keyboards/absinthe/rules.mk new file mode 100644 index 000000000..f0b8037c9 --- /dev/null +++ b/keyboards/absinthe/rules.mk | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = atmel-dfu | ||
| 13 | |||
| 14 | # If you don't know the bootloader type, then you can specify the | ||
| 15 | # Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line | ||
| 16 | # Otherwise, delete this section | ||
| 17 | # Teensy halfKay 512 | ||
| 18 | # Teensy++ halfKay 1024 | ||
| 19 | # Atmel DFU loader 4096 | ||
| 20 | # LUFA bootloader 4096 | ||
| 21 | # USBaspLoader 2048 | ||
| 22 | # OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
| 23 | |||
| 24 | # Build Options | ||
| 25 | # change yes to no to disable | ||
| 26 | # | ||
| 27 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration | ||
| 28 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 29 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 30 | CONSOLE_ENABLE = no # Console for debug | ||
| 31 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 32 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 33 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 34 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 35 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 36 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 37 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 38 | MIDI_ENABLE = no # MIDI support | ||
| 39 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 40 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 41 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 42 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 43 | ENCODER_ENABLE = yes | ||
| 44 | RGBLIGHT_ENABLE = yes | ||
| 45 | # EXTRAFLAGS += -flto | ||
