diff options
| author | Maarten Dekkers <maartenwut@gmail.com> | 2020-07-02 17:02:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-02 16:02:39 +0100 |
| commit | 0e76b2766181b2c6b155b9d5bc0143233cf5cdf1 (patch) | |
| tree | 9dedd5c3e83b3a6d964298d41369bab4238fcc08 | |
| parent | bd4c66a26b79a97c116a7dfa2b9351312c544dc2 (diff) | |
| download | qmk_firmware-0e76b2766181b2c6b155b9d5bc0143233cf5cdf1.tar.gz qmk_firmware-0e76b2766181b2c6b155b9d5bc0143233cf5cdf1.zip | |
Add Eon95 (#9334)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Maarten Dekkers <maartenn2001@gmail.com>
| -rw-r--r-- | keyboards/maartenwut/eon95/config.h | 222 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/eon95.c | 45 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/eon95.h | 96 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/info.json | 338 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/keymaps/default/keymap.c | 34 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/keymaps/via/keymap.c | 40 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/keymaps/via/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/readme.md | 13 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon95/rules.mk | 32 |
9 files changed, 822 insertions, 0 deletions
diff --git a/keyboards/maartenwut/eon95/config.h b/keyboards/maartenwut/eon95/config.h new file mode 100644 index 000000000..d012d47c9 --- /dev/null +++ b/keyboards/maartenwut/eon95/config.h | |||
| @@ -0,0 +1,222 @@ | |||
| 1 | /* Copyright 2019 Maarten Dekkers <maartenwut@gmail.com> | ||
| 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 "config_common.h" | ||
| 20 | |||
| 21 | /* USB Device descriptor parameter */ | ||
| 22 | #define VENDOR_ID 0x4705 | ||
| 23 | #define PRODUCT_ID 0x8A18 | ||
| 24 | #define DEVICE_VER 0x0001 | ||
| 25 | #define MANUFACTURER Maartenwut | ||
| 26 | #define PRODUCT Eon95 | ||
| 27 | #define DESCRIPTION A 95% PCB | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 12 | ||
| 31 | #define MATRIX_COLS 10 | ||
| 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 {D1,D0,D3,D2,D6,D4,D7,B4,B5,B6,C6,C7} | ||
| 44 | #define MATRIX_COL_PINS {E6,F0,F1,F4,F5,F6,F7,B3,B2,B1} | ||
| 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 BACKLIGHT_PIN B7 | ||
| 56 | // #define BACKLIGHT_BREATHING | ||
| 57 | // #define BACKLIGHT_LEVELS 3 | ||
| 58 | |||
| 59 | // #define RGB_DI_PIN D0 | ||
| 60 | // #ifdef RGB_DI_PIN | ||
| 61 | // #define RGBLED_NUM 12 | ||
| 62 | // #define RGBLIGHT_HUE_STEP 8 | ||
| 63 | // #define RGBLIGHT_SAT_STEP 8 | ||
| 64 | // #define RGBLIGHT_VAL_STEP 8 | ||
| 65 | // #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 66 | // #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 67 | // /*== all animations enable ==*/ | ||
| 68 | // #define RGBLIGHT_ANIMATIONS | ||
| 69 | // /*== or choose animations ==*/ | ||
| 70 | // #define RGBLIGHT_EFFECT_BREATHING | ||
| 71 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 72 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 73 | // #define RGBLIGHT_EFFECT_SNAKE | ||
| 74 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
| 75 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 76 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 77 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 78 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 79 | // /*== customize breathing effect ==*/ | ||
| 80 | // /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
| 81 | // #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
| 82 | // /*==== use exp() and sin() ====*/ | ||
| 83 | // #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
| 84 | // #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
| 85 | // #endif | ||
| 86 | |||
| 87 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 88 | #define DEBOUNCE 5 | ||
| 89 | |||
| 90 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 91 | //#define MATRIX_HAS_GHOST | ||
| 92 | |||
| 93 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 94 | #define LOCKING_SUPPORT_ENABLE | ||
| 95 | /* Locking resynchronize hack */ | ||
| 96 | #define LOCKING_RESYNC_ENABLE | ||
| 97 | |||
| 98 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 99 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 100 | */ | ||
| 101 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
| 102 | |||
| 103 | /* | ||
| 104 | * Force NKRO | ||
| 105 | * | ||
| 106 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 107 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 108 | * makefile for this to work.) | ||
| 109 | * | ||
| 110 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 111 | * until the next keyboard reset. | ||
| 112 | * | ||
| 113 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 114 | * fully operational during normal computer usage. | ||
| 115 | * | ||
| 116 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 117 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 118 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 119 | * power-up. | ||
| 120 | * | ||
| 121 | */ | ||
| 122 | //#define FORCE_NKRO | ||
| 123 | |||
| 124 | /* | ||
| 125 | * Magic Key Options | ||
| 126 | * | ||
| 127 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
| 128 | * the keyboard. They are best used in combination with the HID Listen program, | ||
| 129 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
| 130 | * | ||
| 131 | * The options below allow the magic key functionality to be changed. This is | ||
| 132 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
| 133 | * | ||
| 134 | */ | ||
| 135 | |||
| 136 | /* key combination for magic key command */ | ||
| 137 | /* defined by default; to change, uncomment and set to the combination you want */ | ||
| 138 | // #define IS_COMMAND() (get_mods() == MOD_MASK_SHIFT) | ||
| 139 | |||
| 140 | /* control how magic key switches layers */ | ||
| 141 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 142 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 143 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 144 | |||
| 145 | /* override magic key keymap */ | ||
| 146 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 147 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 148 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 149 | //#define MAGIC_KEY_HELP H | ||
| 150 | //#define MAGIC_KEY_HELP_ALT SLASH | ||
| 151 | //#define MAGIC_KEY_DEBUG D | ||
| 152 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 153 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 154 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 155 | //#define MAGIC_KEY_VERSION V | ||
| 156 | //#define MAGIC_KEY_STATUS S | ||
| 157 | //#define MAGIC_KEY_CONSOLE C | ||
| 158 | //#define MAGIC_KEY_LAYER0 0 | ||
| 159 | //#define MAGIC_KEY_LAYER0_ALT GRAVE | ||
| 160 | //#define MAGIC_KEY_LAYER1 1 | ||
| 161 | //#define MAGIC_KEY_LAYER2 2 | ||
| 162 | //#define MAGIC_KEY_LAYER3 3 | ||
| 163 | //#define MAGIC_KEY_LAYER4 4 | ||
| 164 | //#define MAGIC_KEY_LAYER5 5 | ||
| 165 | //#define MAGIC_KEY_LAYER6 6 | ||
| 166 | //#define MAGIC_KEY_LAYER7 7 | ||
| 167 | //#define MAGIC_KEY_LAYER8 8 | ||
| 168 | //#define MAGIC_KEY_LAYER9 9 | ||
| 169 | //#define MAGIC_KEY_BOOTLOADER B | ||
| 170 | //#define MAGIC_KEY_BOOTLOADER_ALT ESC | ||
| 171 | //#define MAGIC_KEY_LOCK CAPS | ||
| 172 | //#define MAGIC_KEY_EEPROM E | ||
| 173 | //#define MAGIC_KEY_EEPROM_CLEAR BSPACE | ||
| 174 | //#define MAGIC_KEY_NKRO N | ||
| 175 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 176 | |||
| 177 | /* | ||
| 178 | * Feature disable options | ||
| 179 | * These options are also useful to firmware size reduction. | ||
| 180 | */ | ||
| 181 | |||
| 182 | /* disable debug print */ | ||
| 183 | //#define NO_DEBUG | ||
| 184 | |||
| 185 | /* disable print */ | ||
| 186 | //#define NO_PRINT | ||
| 187 | |||
| 188 | /* disable action features */ | ||
| 189 | //#define NO_ACTION_LAYER | ||
| 190 | //#define NO_ACTION_TAPPING | ||
| 191 | //#define NO_ACTION_ONESHOT | ||
| 192 | //#define NO_ACTION_MACRO | ||
| 193 | //#define NO_ACTION_FUNCTION | ||
| 194 | |||
| 195 | /* | ||
| 196 | * MIDI options | ||
| 197 | */ | ||
| 198 | |||
| 199 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 200 | //#define MIDI_ENABLE_STRICT 1 | ||
| 201 | |||
| 202 | /* enable basic MIDI features: | ||
| 203 | - MIDI notes can be sent when in Music mode is on | ||
| 204 | */ | ||
| 205 | //#define MIDI_BASIC | ||
| 206 | |||
| 207 | /* enable advanced MIDI features: | ||
| 208 | - MIDI notes can be added to the keymap | ||
| 209 | - Octave shift and transpose | ||
| 210 | - Virtual sustain, portamento, and modulation wheel | ||
| 211 | - etc. | ||
| 212 | */ | ||
| 213 | //#define MIDI_ADVANCED | ||
| 214 | |||
| 215 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 216 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
| 217 | |||
| 218 | /* Bootmagic Lite key configuration */ | ||
| 219 | // #define BOOTMAGIC_LITE_ROW 0 | ||
| 220 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
| 221 | |||
| 222 | #define DYNAMIC_KEYMAP_LAYER_COUNT 3 | ||
diff --git a/keyboards/maartenwut/eon95/eon95.c b/keyboards/maartenwut/eon95/eon95.c new file mode 100644 index 000000000..b57cb3000 --- /dev/null +++ b/keyboards/maartenwut/eon95/eon95.c | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* Copyright 2019 Maarten Dekkers <maartenwut@gmail.com> | ||
| 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 "eon95.h" | ||
| 17 | |||
| 18 | void matrix_init_kb(void) { | ||
| 19 | // put your keyboard start-up code here | ||
| 20 | // runs once when the firmware starts up | ||
| 21 | matrix_init_user(); | ||
| 22 | led_init_ports(); | ||
| 23 | } | ||
| 24 | |||
| 25 | void led_init_ports(void) { | ||
| 26 | // * Set our LED pins as output and high | ||
| 27 | setPinOutput(D5); | ||
| 28 | writePinHigh(D5); | ||
| 29 | |||
| 30 | setPinOutput(B7); | ||
| 31 | writePinHigh(B7); | ||
| 32 | |||
| 33 | setPinOutput(B0); | ||
| 34 | writePinHigh(B0); | ||
| 35 | } | ||
| 36 | |||
| 37 | bool led_update_kb(led_t led_state) { | ||
| 38 | if(led_update_user(led_state)) { | ||
| 39 | writePin(D5, !led_state.caps_lock); | ||
| 40 | writePin(B7, !led_state.num_lock); | ||
| 41 | writePin(B0, !led_state.scroll_lock); | ||
| 42 | } | ||
| 43 | |||
| 44 | return true; | ||
| 45 | } | ||
diff --git a/keyboards/maartenwut/eon95/eon95.h b/keyboards/maartenwut/eon95/eon95.h new file mode 100644 index 000000000..7f7c84356 --- /dev/null +++ b/keyboards/maartenwut/eon95/eon95.h | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | /* Copyright 2019 Maarten Dekkers <maartenwut@gmail.com> | ||
| 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 | #define XXX KC_NO | ||
| 20 | |||
| 21 | /* This 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 LAYOUT_all( \ | ||
| 31 | k00, k10, k01, k11, k02, k03, k13, k04, k14, k05, k15, k06, k16, k07, k17, k08, k18, k09, \ | ||
| 32 | k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k36, k27, k37, k28, k38, k29, \ | ||
| 33 | k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55, k46, k47, k57, k48, k58, k49, \ | ||
| 34 | k60, k70, k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76, k77, k68, k78, k69, \ | ||
| 35 | k80, k90, k81, k91, k82, k92, k83, k93, k84, k94, k85, k95, k86, k87, k97, k88, k98, k89, \ | ||
| 36 | ka0, kb0, ka1, kb3, ka5, kb5, ka6, kb6, ka7, kb7, ka8, kb8 \ | ||
| 37 | ) \ | ||
| 38 | { \ | ||
| 39 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ | ||
| 40 | { k10, k11, XXX, k13, k14, k15, k16, k17, k18, XXX }, \ | ||
| 41 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ | ||
| 42 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, XXX }, \ | ||
| 43 | { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49 }, \ | ||
| 44 | { k50, k51, k52, k53, k54, k55, XXX, k57, k58, XXX }, \ | ||
| 45 | { k60, k61, k62, k63, k64, k65, k66, XXX, k68, k69 }, \ | ||
| 46 | { k70, k71, k72, k73, k74, k75, k76, k77, k78, XXX }, \ | ||
| 47 | { k80, k81, k82, k83, k84, k85, k86, k87, k88, k89 }, \ | ||
| 48 | { k90, k91, k92, k93, k94, k95, XXX, k97, k98, XXX }, \ | ||
| 49 | { ka0, ka1, XXX, XXX, XXX, ka5, ka6, ka7, ka8, XXX }, \ | ||
| 50 | { kb0, XXX, XXX, kb3, XXX, kb5, kb6, kb7, kb8, XXX } \ | ||
| 51 | } | ||
| 52 | |||
| 53 | #define LAYOUT_ansi( \ | ||
| 54 | k00, k10, k01, k11, k02, k03, k13, k04, k14, k05, k15, k06, k16, k07, k17, k08, k18, k09, \ | ||
| 55 | k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k27, k37, k28, k38, k29, \ | ||
| 56 | k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55, k46, k47, k57, k48, k58, \ | ||
| 57 | k60, k70, k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k76, k77, k68, k78, k69, \ | ||
| 58 | k80, k81, k91, k82, k92, k83, k93, k84, k94, k85, k95, k86, k87, k97, k88, k98, k89, \ | ||
| 59 | ka0, kb0, ka1, kb3, ka5, kb5, ka6, kb6, ka7, kb7, ka8, kb8 \ | ||
| 60 | ) \ | ||
| 61 | { \ | ||
| 62 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ | ||
| 63 | { k10, k11, XXX, k13, k14, k15, k16, k17, k18, XXX }, \ | ||
| 64 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ | ||
| 65 | { k30, k31, k32, k33, k34, k35, XXX, k37, k38, XXX }, \ | ||
| 66 | { k40, k41, k42, k43, k44, k45, k46, k47, k48, XXX }, \ | ||
| 67 | { k50, k51, k52, k53, k54, k55, XXX, k57, k58, XXX }, \ | ||
| 68 | { k60, k61, k62, k63, k64, k65, XXX, XXX, k68, k69 }, \ | ||
| 69 | { k70, k71, k72, k73, k74, k75, k76, k77, k78, XXX }, \ | ||
| 70 | { k80, k81, k82, k83, k84, k85, k86, k87, k88, k89 }, \ | ||
| 71 | { XXX, k91, k92, k93, k94, k95, XXX, k97, k98, XXX }, \ | ||
| 72 | { ka0, ka1, XXX, XXX, XXX, ka5, ka6, ka7, ka8, XXX }, \ | ||
| 73 | { kb0, XXX, XXX, kb3, XXX, kb5, kb6, kb7, kb8, XXX } \ | ||
| 74 | } | ||
| 75 | #define LAYOUT_iso( \ | ||
| 76 | k00, k10, k01, k11, k02, k03, k13, k04, k14, k05, k15, k06, k16, k07, k17, k08, k18, k09, \ | ||
| 77 | k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k27, k37, k28, k38, k29, \ | ||
| 78 | k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55, k46, k57, k48, k58, \ | ||
| 79 | k60, k70, k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76, k77, k68, k78, k69, \ | ||
| 80 | k80, k90, k81, k91, k82, k92, k83, k93, k84, k94, k85, k95, k86, k87, k97, k88, k98, k89, \ | ||
| 81 | ka0, kb0, ka1, kb3, ka5, kb5, ka6, kb6, ka7, kb7, ka8, kb8 \ | ||
| 82 | ) \ | ||
| 83 | { \ | ||
| 84 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ | ||
| 85 | { k10, k11, XXX, k13, k14, k15, k16, k17, k18, XXX }, \ | ||
| 86 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ | ||
| 87 | { k30, k31, k32, k33, k34, k35, XXX, k37, k38, XXX }, \ | ||
| 88 | { k40, k41, k42, k43, k44, k45, k46, XXX, k48, XXX }, \ | ||
| 89 | { k50, k51, k52, k53, k54, k55, XXX, k57, k58, XXX }, \ | ||
| 90 | { k60, k61, k62, k63, k64, k65, k66, XXX, k68, k69 }, \ | ||
| 91 | { k70, k71, k72, k73, k74, k75, k76, k77, k78, XXX }, \ | ||
| 92 | { k80, k81, k82, k83, k84, k85, k86, k87, k88, k89 }, \ | ||
| 93 | { k90, k91, k92, k93, k94, k95, XXX, k97, k98, XXX }, \ | ||
| 94 | { ka0, ka1, XXX, XXX, XXX, ka5, ka6, ka7, ka8, XXX }, \ | ||
| 95 | { kb0, XXX, XXX, kb3, XXX, kb5, kb6, kb7, kb8, XXX } \ | ||
| 96 | } | ||
diff --git a/keyboards/maartenwut/eon95/info.json b/keyboards/maartenwut/eon95/info.json new file mode 100644 index 000000000..740c9bb0c --- /dev/null +++ b/keyboards/maartenwut/eon95/info.json | |||
| @@ -0,0 +1,338 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Eon95", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 19.5, | ||
| 6 | "height": 6.5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_all": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0, "y":0}, | ||
| 11 | {"x":1.5, "y":0}, | ||
| 12 | {"x":2.5, "y":0}, | ||
| 13 | {"x":3.5, "y":0}, | ||
| 14 | {"x":4.5, "y":0}, | ||
| 15 | {"x":5.75, "y":0}, | ||
| 16 | {"x":6.75, "y":0}, | ||
| 17 | {"x":7.75, "y":0}, | ||
| 18 | {"x":8.75, "y":0}, | ||
| 19 | {"x":10, "y":0}, | ||
| 20 | {"x":11, "y":0}, | ||
| 21 | {"x":12, "y":0}, | ||
| 22 | {"x":13, "y":0}, | ||
| 23 | {"x":14.5, "y":0}, | ||
| 24 | {"x":15.5, "y":0}, | ||
| 25 | {"x":16.5, "y":0}, | ||
| 26 | {"x":17.5, "y":0}, | ||
| 27 | {"x":18.5, "y":0}, | ||
| 28 | |||
| 29 | {"x":0, "y":1.25}, | ||
| 30 | {"x":1, "y":1.25}, | ||
| 31 | {"x":2, "y":1.25}, | ||
| 32 | {"x":3, "y":1.25}, | ||
| 33 | {"x":4, "y":1.25}, | ||
| 34 | {"x":5, "y":1.25}, | ||
| 35 | {"x":6, "y":1.25}, | ||
| 36 | {"x":7, "y":1.25}, | ||
| 37 | {"x":8, "y":1.25}, | ||
| 38 | {"x":9, "y":1.25}, | ||
| 39 | {"x":10, "y":1.25}, | ||
| 40 | {"x":11, "y":1.25}, | ||
| 41 | {"x":12, "y":1.25}, | ||
| 42 | {"x":13, "y":1.25}, | ||
| 43 | {"x":14, "y":1.25}, | ||
| 44 | {"x":15.5, "y":1.25}, | ||
| 45 | {"x":16.5, "y":1.25}, | ||
| 46 | {"x":17.5, "y":1.25}, | ||
| 47 | {"x":18.5, "y":1.25}, | ||
| 48 | |||
| 49 | {"x":0, "y":2.25, "w":1.5}, | ||
| 50 | {"x":1.5, "y":2.25}, | ||
| 51 | {"x":2.5, "y":2.25}, | ||
| 52 | {"x":3.5, "y":2.25}, | ||
| 53 | {"x":4.5, "y":2.25}, | ||
| 54 | {"x":5.5, "y":2.25}, | ||
| 55 | {"x":6.5, "y":2.25}, | ||
| 56 | {"x":7.5, "y":2.25}, | ||
| 57 | {"x":8.5, "y":2.25}, | ||
| 58 | {"x":9.5, "y":2.25}, | ||
| 59 | {"x":10.5, "y":2.25}, | ||
| 60 | {"x":11.5, "y":2.25}, | ||
| 61 | {"x":12.5, "y":2.25}, | ||
| 62 | {"x":13.5, "y":2.25, "w":1.5}, | ||
| 63 | {"x":15.5, "y":2.25}, | ||
| 64 | {"x":16.5, "y":2.25}, | ||
| 65 | {"x":17.5, "y":2.25}, | ||
| 66 | {"x":18.5, "y":2.25}, | ||
| 67 | |||
| 68 | {"x":0, "y":3.25, "w":1.75}, | ||
| 69 | {"x":1.75, "y":3.25}, | ||
| 70 | {"x":2.75, "y":3.25}, | ||
| 71 | {"x":3.75, "y":3.25}, | ||
| 72 | {"x":4.75, "y":3.25}, | ||
| 73 | {"x":5.75, "y":3.25}, | ||
| 74 | {"x":6.75, "y":3.25}, | ||
| 75 | {"x":7.75, "y":3.25}, | ||
| 76 | {"x":8.75, "y":3.25}, | ||
| 77 | {"x":9.75, "y":3.25}, | ||
| 78 | {"x":10.75, "y":3.25}, | ||
| 79 | {"x":11.75, "y":3.25}, | ||
| 80 | {"x":12.75, "y":3.25}, | ||
| 81 | {"x":13.75, "y":3.25, "w":1.25}, | ||
| 82 | {"x":15.5, "y":3.25}, | ||
| 83 | {"x":16.5, "y":3.25}, | ||
| 84 | {"x":17.5, "y":3.25}, | ||
| 85 | {"x":18.5, "y":3.25}, | ||
| 86 | |||
| 87 | {"x":0, "y":4.25, "w":1.25}, | ||
| 88 | {"x":1.25, "y":4.25}, | ||
| 89 | {"x":2.25, "y":4.25}, | ||
| 90 | {"x":3.25, "y":4.25}, | ||
| 91 | {"x":4.25, "y":4.25}, | ||
| 92 | {"x":5.25, "y":4.25}, | ||
| 93 | {"x":6.25, "y":4.25}, | ||
| 94 | {"x":7.25, "y":4.25}, | ||
| 95 | {"x":8.25, "y":4.25}, | ||
| 96 | {"x":9.25, "y":4.25}, | ||
| 97 | {"x":10.25, "y":4.25}, | ||
| 98 | {"x":11.25, "y":4.25}, | ||
| 99 | {"x":12.25, "y":4.25, "w":1.75}, | ||
| 100 | {"x":14.25, "y":4.5}, | ||
| 101 | {"x":15.5, "y":4.25}, | ||
| 102 | {"x":16.5, "y":4.25}, | ||
| 103 | {"x":17.5, "y":4.25}, | ||
| 104 | {"x":18.5, "y":4.25, "h":2}, | ||
| 105 | |||
| 106 | {"x":0, "y":5.25, "w":1.25}, | ||
| 107 | {"x":1.25, "y":5.25, "w":1.25}, | ||
| 108 | {"x":2.5, "y":5.25, "w":1.25}, | ||
| 109 | {"x":3.75, "y":5.25, "w":6.25}, | ||
| 110 | {"x":10, "y":5.25}, | ||
| 111 | {"x":11, "y":5.25}, | ||
| 112 | {"x":12, "y":5.25}, | ||
| 113 | {"x":13.25, "y":5.5}, | ||
| 114 | {"x":14.25, "y":5.5}, | ||
| 115 | {"x":15.25, "y":5.5}, | ||
| 116 | {"x":16.5, "y":5.25}, | ||
| 117 | {"x":17.5, "y":5.25} | ||
| 118 | ] | ||
| 119 | }, | ||
| 120 | "LAYOUT_ansi": { | ||
| 121 | "layout": [ | ||
| 122 | {"x":0, "y":0}, | ||
| 123 | {"x":1.5, "y":0}, | ||
| 124 | {"x":2.5, "y":0}, | ||
| 125 | {"x":3.5, "y":0}, | ||
| 126 | {"x":4.5, "y":0}, | ||
| 127 | {"x":5.75, "y":0}, | ||
| 128 | {"x":6.75, "y":0}, | ||
| 129 | {"x":7.75, "y":0}, | ||
| 130 | {"x":8.75, "y":0}, | ||
| 131 | {"x":10, "y":0}, | ||
| 132 | {"x":11, "y":0}, | ||
| 133 | {"x":12, "y":0}, | ||
| 134 | {"x":13, "y":0}, | ||
| 135 | {"x":14.5, "y":0}, | ||
| 136 | {"x":15.5, "y":0}, | ||
| 137 | {"x":16.5, "y":0}, | ||
| 138 | {"x":17.5, "y":0}, | ||
| 139 | {"x":18.5, "y":0}, | ||
| 140 | |||
| 141 | {"x":0, "y":1.25}, | ||
| 142 | {"x":1, "y":1.25}, | ||
| 143 | {"x":2, "y":1.25}, | ||
| 144 | {"x":3, "y":1.25}, | ||
| 145 | {"x":4, "y":1.25}, | ||
| 146 | {"x":5, "y":1.25}, | ||
| 147 | {"x":6, "y":1.25}, | ||
| 148 | {"x":7, "y":1.25}, | ||
| 149 | {"x":8, "y":1.25}, | ||
| 150 | {"x":9, "y":1.25}, | ||
| 151 | {"x":10, "y":1.25}, | ||
| 152 | {"x":11, "y":1.25}, | ||
| 153 | {"x":12, "y":1.25}, | ||
| 154 | {"x":13, "y":1.25, "w":2}, | ||
| 155 | {"x":15.5, "y":1.25}, | ||
| 156 | {"x":16.5, "y":1.25}, | ||
| 157 | {"x":17.5, "y":1.25}, | ||
| 158 | {"x":18.5, "y":1.25}, | ||
| 159 | |||
| 160 | {"x":0, "y":2.25, "w":1.5}, | ||
| 161 | {"x":1.5, "y":2.25}, | ||
| 162 | {"x":2.5, "y":2.25}, | ||
| 163 | {"x":3.5, "y":2.25}, | ||
| 164 | {"x":4.5, "y":2.25}, | ||
| 165 | {"x":5.5, "y":2.25}, | ||
| 166 | {"x":6.5, "y":2.25}, | ||
| 167 | {"x":7.5, "y":2.25}, | ||
| 168 | {"x":8.5, "y":2.25}, | ||
| 169 | {"x":9.5, "y":2.25}, | ||
| 170 | {"x":10.5, "y":2.25}, | ||
| 171 | {"x":11.5, "y":2.25}, | ||
| 172 | {"x":12.5, "y":2.25}, | ||
| 173 | {"x":13.5, "y":2.25, "w":1.5}, | ||
| 174 | {"x":15.5, "y":2.25}, | ||
| 175 | {"x":16.5, "y":2.25}, | ||
| 176 | {"x":17.5, "y":2.25}, | ||
| 177 | {"x":18.5, "y":2.25, "h":2}, | ||
| 178 | |||
| 179 | {"x":0, "y":3.25, "w":1.75}, | ||
| 180 | {"x":1.75, "y":3.25}, | ||
| 181 | {"x":2.75, "y":3.25}, | ||
| 182 | {"x":3.75, "y":3.25}, | ||
| 183 | {"x":4.75, "y":3.25}, | ||
| 184 | {"x":5.75, "y":3.25}, | ||
| 185 | {"x":6.75, "y":3.25}, | ||
| 186 | {"x":7.75, "y":3.25}, | ||
| 187 | {"x":8.75, "y":3.25}, | ||
| 188 | {"x":9.75, "y":3.25}, | ||
| 189 | {"x":10.75, "y":3.25}, | ||
| 190 | {"x":11.75, "y":3.25}, | ||
| 191 | {"x":12.75, "y":3.25, "w":2.25}, | ||
| 192 | {"x":15.5, "y":3.25}, | ||
| 193 | {"x":16.5, "y":3.25}, | ||
| 194 | {"x":17.5, "y":3.25}, | ||
| 195 | |||
| 196 | {"x":0, "y":4.25, "w":2.25}, | ||
| 197 | {"x":2.25, "y":4.25}, | ||
| 198 | {"x":3.25, "y":4.25}, | ||
| 199 | {"x":4.25, "y":4.25}, | ||
| 200 | {"x":5.25, "y":4.25}, | ||
| 201 | {"x":6.25, "y":4.25}, | ||
| 202 | {"x":7.25, "y":4.25}, | ||
| 203 | {"x":8.25, "y":4.25}, | ||
| 204 | {"x":9.25, "y":4.25}, | ||
| 205 | {"x":10.25, "y":4.25}, | ||
| 206 | {"x":11.25, "y":4.25}, | ||
| 207 | {"x":12.25, "y":4.25, "w":1.75}, | ||
| 208 | {"x":14.25, "y":4.5}, | ||
| 209 | {"x":15.5, "y":4.25}, | ||
| 210 | {"x":16.5, "y":4.25}, | ||
| 211 | {"x":17.5, "y":4.25}, | ||
| 212 | {"x":18.5, "y":4.25, "h":2}, | ||
| 213 | |||
| 214 | {"x":0, "y":5.25, "w":1.25}, | ||
| 215 | {"x":1.25, "y":5.25, "w":1.25}, | ||
| 216 | {"x":2.5, "y":5.25, "w":1.25}, | ||
| 217 | {"x":3.75, "y":5.25, "w":6.25}, | ||
| 218 | {"x":10, "y":5.25}, | ||
| 219 | {"x":11, "y":5.25}, | ||
| 220 | {"x":12, "y":5.25}, | ||
| 221 | {"x":13.25, "y":5.5}, | ||
| 222 | {"x":14.25, "y":5.5}, | ||
| 223 | {"x":15.25, "y":5.5}, | ||
| 224 | {"x":16.5, "y":5.25}, | ||
| 225 | {"x":17.5, "y":5.25} | ||
| 226 | ] | ||
| 227 | }, | ||
| 228 | "LAYOUT_iso": { | ||
| 229 | "layout": [ | ||
| 230 | {"x":0, "y":0}, | ||
| 231 | {"x":1.5, "y":0}, | ||
| 232 | {"x":2.5, "y":0}, | ||
| 233 | {"x":3.5, "y":0}, | ||
| 234 | {"x":4.5, "y":0}, | ||
| 235 | {"x":5.75, "y":0}, | ||
| 236 | {"x":6.75, "y":0}, | ||
| 237 | {"x":7.75, "y":0}, | ||
| 238 | {"x":8.75, "y":0}, | ||
| 239 | {"x":10, "y":0}, | ||
| 240 | {"x":11, "y":0}, | ||
| 241 | {"x":12, "y":0}, | ||
| 242 | {"x":13, "y":0}, | ||
| 243 | {"x":14.5, "y":0}, | ||
| 244 | {"x":15.5, "y":0}, | ||
| 245 | {"x":16.5, "y":0}, | ||
| 246 | {"x":17.5, "y":0}, | ||
| 247 | {"x":18.5, "y":0}, | ||
| 248 | |||
| 249 | {"x":0, "y":1.25}, | ||
| 250 | {"x":1, "y":1.25}, | ||
| 251 | {"x":2, "y":1.25}, | ||
| 252 | {"x":3, "y":1.25}, | ||
| 253 | {"x":4, "y":1.25}, | ||
| 254 | {"x":5, "y":1.25}, | ||
| 255 | {"x":6, "y":1.25}, | ||
| 256 | {"x":7, "y":1.25}, | ||
| 257 | {"x":8, "y":1.25}, | ||
| 258 | {"x":9, "y":1.25}, | ||
| 259 | {"x":10, "y":1.25}, | ||
| 260 | {"x":11, "y":1.25}, | ||
| 261 | {"x":12, "y":1.25}, | ||
| 262 | {"x":13, "y":1.25, "w":2}, | ||
| 263 | {"x":15.5, "y":1.25}, | ||
| 264 | {"x":16.5, "y":1.25}, | ||
| 265 | {"x":17.5, "y":1.25}, | ||
| 266 | {"x":18.5, "y":1.25}, | ||
| 267 | |||
| 268 | {"x":0, "y":2.25, "w":1.5}, | ||
| 269 | {"x":1.5, "y":2.25}, | ||
| 270 | {"x":2.5, "y":2.25}, | ||
| 271 | {"x":3.5, "y":2.25}, | ||
| 272 | {"x":4.5, "y":2.25}, | ||
| 273 | {"x":5.5, "y":2.25}, | ||
| 274 | {"x":6.5, "y":2.25}, | ||
| 275 | {"x":7.5, "y":2.25}, | ||
| 276 | {"x":8.5, "y":2.25}, | ||
| 277 | {"x":9.5, "y":2.25}, | ||
| 278 | {"x":10.5, "y":2.25}, | ||
| 279 | {"x":11.5, "y":2.25}, | ||
| 280 | {"x":12.5, "y":2.25}, | ||
| 281 | {"x":15.5, "y":2.25}, | ||
| 282 | {"x":16.5, "y":2.25}, | ||
| 283 | {"x":17.5, "y":2.25}, | ||
| 284 | {"x":18.5, "y":2.25, "h":2}, | ||
| 285 | |||
| 286 | {"x":0, "y":3.25, "w":1.75}, | ||
| 287 | {"x":1.75, "y":3.25}, | ||
| 288 | {"x":2.75, "y":3.25}, | ||
| 289 | {"x":3.75, "y":3.25}, | ||
| 290 | {"x":4.75, "y":3.25}, | ||
| 291 | {"x":5.75, "y":3.25}, | ||
| 292 | {"x":6.75, "y":3.25}, | ||
| 293 | {"x":7.75, "y":3.25}, | ||
| 294 | {"x":8.75, "y":3.25}, | ||
| 295 | {"x":9.75, "y":3.25}, | ||
| 296 | {"x":10.75, "y":3.25}, | ||
| 297 | {"x":11.75, "y":3.25}, | ||
| 298 | {"x":12.75, "y":3.25}, | ||
| 299 | {"x":13.75, "y":2.25, "w":1.25, "h":2}, | ||
| 300 | {"x":15.5, "y":3.25}, | ||
| 301 | {"x":16.5, "y":3.25}, | ||
| 302 | {"x":17.5, "y":3.25}, | ||
| 303 | |||
| 304 | {"x":0, "y":4.25, "w":1.25}, | ||
| 305 | {"x":1.25, "y":4.25}, | ||
| 306 | {"x":2.25, "y":4.25}, | ||
| 307 | {"x":3.25, "y":4.25}, | ||
| 308 | {"x":4.25, "y":4.25}, | ||
| 309 | {"x":5.25, "y":4.25}, | ||
| 310 | {"x":6.25, "y":4.25}, | ||
| 311 | {"x":7.25, "y":4.25}, | ||
| 312 | {"x":8.25, "y":4.25}, | ||
| 313 | {"x":9.25, "y":4.25}, | ||
| 314 | {"x":10.25, "y":4.25}, | ||
| 315 | {"x":11.25, "y":4.25}, | ||
| 316 | {"x":12.25, "y":4.25, "w":1.75}, | ||
| 317 | {"x":14.25, "y":4.5}, | ||
| 318 | {"x":15.5, "y":4.25}, | ||
| 319 | {"x":16.5, "y":4.25}, | ||
| 320 | {"x":17.5, "y":4.25}, | ||
| 321 | {"x":18.5, "y":4.25, "h":2}, | ||
| 322 | |||
| 323 | {"x":0, "y":5.25, "w":1.25}, | ||
| 324 | {"x":1.25, "y":5.25, "w":1.25}, | ||
| 325 | {"x":2.5, "y":5.25, "w":1.25}, | ||
| 326 | {"x":3.75, "y":5.25, "w":6.25}, | ||
| 327 | {"x":10, "y":5.25}, | ||
| 328 | {"x":11, "y":5.25}, | ||
| 329 | {"x":12, "y":5.25}, | ||
| 330 | {"x":13.25, "y":5.5}, | ||
| 331 | {"x":14.25, "y":5.5}, | ||
| 332 | {"x":15.25, "y":5.5}, | ||
| 333 | {"x":16.5, "y":5.25}, | ||
| 334 | {"x":17.5, "y":5.25} | ||
| 335 | ] | ||
| 336 | } | ||
| 337 | } | ||
| 338 | } | ||
diff --git a/keyboards/maartenwut/eon95/keymaps/default/keymap.c b/keyboards/maartenwut/eon95/keymaps/default/keymap.c new file mode 100644 index 000000000..0976b53c1 --- /dev/null +++ b/keyboards/maartenwut/eon95/keymaps/default/keymap.c | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | /* Copyright 2019 Maarten Dekkers <maartenwut@gmail.com> | ||
| 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_INS, KC_DEL, 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_BSLS, KC_BSPC, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
| 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_P7, KC_P8, KC_P9, KC_PPLS, | ||
| 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, KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
| 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, KC_P1, KC_P2, KC_P3, KC_PENT, | ||
| 25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_PDOT), | ||
| 26 | [1] = LAYOUT_all( | ||
| 27 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
| 33 | |||
| 34 | }; \ No newline at end of file | ||
diff --git a/keyboards/maartenwut/eon95/keymaps/via/keymap.c b/keyboards/maartenwut/eon95/keymaps/via/keymap.c new file mode 100644 index 000000000..12c6e2eed --- /dev/null +++ b/keyboards/maartenwut/eon95/keymaps/via/keymap.c | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | /* Copyright 2019 Maarten Dekkers <maartenwut@gmail.com> | ||
| 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_INS, KC_DEL, 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_BSLS, KC_BSPC, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
| 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_P7, KC_P8, KC_P9, KC_PPLS, | ||
| 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, KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
| 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, KC_P1, KC_P2, KC_P3, KC_PENT, | ||
| 25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_PDOT), | ||
| 26 | [1] = LAYOUT_all( | ||
| 27 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
| 33 | [2] = LAYOUT_all( | ||
| 34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______) | ||
| 40 | }; \ No newline at end of file | ||
diff --git a/keyboards/maartenwut/eon95/keymaps/via/rules.mk b/keyboards/maartenwut/eon95/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/maartenwut/eon95/keymaps/via/rules.mk | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | VIA_ENABLE = yes | ||
| 2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/maartenwut/eon95/readme.md b/keyboards/maartenwut/eon95/readme.md new file mode 100644 index 000000000..db6bac843 --- /dev/null +++ b/keyboards/maartenwut/eon95/readme.md | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # Eon95 | ||
| 2 | |||
| 3 | ## Support | ||
| 4 | * Keyboard Maintainer: [Maarten Dekkers](https://github.com/maartenwut) | ||
| 5 | * Hardware Supported: Eon95 | ||
| 6 | * Hardware Availability: None | ||
| 7 | |||
| 8 | ## Build | ||
| 9 | Make example for this keyboard (after setting up your build environment): | ||
| 10 | |||
| 11 | make maartenwut/eon95:default | ||
| 12 | |||
| 13 | 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). \ No newline at end of file | ||
diff --git a/keyboards/maartenwut/eon95/rules.mk b/keyboards/maartenwut/eon95/rules.mk new file mode 100644 index 000000000..264e0ea67 --- /dev/null +++ b/keyboards/maartenwut/eon95/rules.mk | |||
| @@ -0,0 +1,32 @@ | |||
| 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 | # Build Options | ||
| 15 | # change yes to no to disable | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 18 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 20 | CONSOLE_ENABLE = yes # Console for debug | ||
| 21 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 25 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 28 | MIDI_ENABLE = no # MIDI support | ||
| 29 | UNICODE_ENABLE = no # Unicode | ||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
