diff options
| author | Maarten Dekkers <maartenwut@gmail.com> | 2020-07-02 10:19:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-02 09:19:17 +0100 |
| commit | bd4c66a26b79a97c116a7dfa2b9351312c544dc2 (patch) | |
| tree | 02025cf15598e604bf5f0d5fc32176ba97044dc4 | |
| parent | 7c57efaaf9388e003422c8b2c15e4ecd8b10053c (diff) | |
| download | qmk_firmware-bd4c66a26b79a97c116a7dfa2b9351312c544dc2.tar.gz qmk_firmware-bd4c66a26b79a97c116a7dfa2b9351312c544dc2.zip | |
Eon65 (#9331)
Co-authored-by: Maarten Dekkers <maartenn2001@gmail.com>
| -rw-r--r-- | keyboards/maartenwut/eon65/config.h | 220 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/eon65.c | 16 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/eon65.h | 103 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/info.json | 392 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/keymaps/default/keymap.c | 32 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/keymaps/via/keymap.c | 43 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/keymaps/via/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/readme.md | 13 | ||||
| -rw-r--r-- | keyboards/maartenwut/eon65/rules.mk | 34 |
9 files changed, 855 insertions, 0 deletions
diff --git a/keyboards/maartenwut/eon65/config.h b/keyboards/maartenwut/eon65/config.h new file mode 100644 index 000000000..bfb23569b --- /dev/null +++ b/keyboards/maartenwut/eon65/config.h | |||
| @@ -0,0 +1,220 @@ | |||
| 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 0xAEB4 | ||
| 24 | #define DEVICE_VER 0x0001 | ||
| 25 | #define MANUFACTURER Maartenwut | ||
| 26 | #define PRODUCT Eon65 | ||
| 27 | #define DESCRIPTION A 65% PCB | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 5 | ||
| 31 | #define MATRIX_COLS 16 | ||
| 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 {D3,D5,B1,B2,B3} | ||
| 44 | #define MATRIX_COL_PINS {B0,D2,D4,D6,D7,B4,B5,B6,C6,C7,F7,F6,F5,F4,F1,F0} | ||
| 45 | #define UNUSED_PINS {B7,D0,D1} | ||
| 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 E6 | ||
| 60 | #ifdef RGB_DI_PIN | ||
| 61 | #define RGBLED_NUM 10 | ||
| 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 | ||
diff --git a/keyboards/maartenwut/eon65/eon65.c b/keyboards/maartenwut/eon65/eon65.c new file mode 100644 index 000000000..3571509dc --- /dev/null +++ b/keyboards/maartenwut/eon65/eon65.c | |||
| @@ -0,0 +1,16 @@ | |||
| 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 "eon65.h" | ||
diff --git a/keyboards/maartenwut/eon65/eon65.h b/keyboards/maartenwut/eon65/eon65.h new file mode 100644 index 000000000..0593df27f --- /dev/null +++ b/keyboards/maartenwut/eon65/eon65.h | |||
| @@ -0,0 +1,103 @@ | |||
| 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, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0f, k0d, k0e, \ | ||
| 32 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, \ | ||
| 33 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, \ | ||
| 34 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \ | ||
| 35 | k40, k41, k42, k46, k49, k4a, k4b, k4c, k4d, k4e \ | ||
| 36 | ) \ | ||
| 37 | { \ | ||
| 38 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f }, \ | ||
| 39 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, XXX }, \ | ||
| 40 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, XXX }, \ | ||
| 41 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, XXX }, \ | ||
| 42 | { k40, k41, k42, XXX, XXX, XXX, k46, XXX, XXX, k49, k4a, k4b, k4c, k4d, k4e, XXX } \ | ||
| 43 | } | ||
| 44 | |||
| 45 | #define LAYOUT_65_ansi( \ | ||
| 46 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, \ | ||
| 47 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, \ | ||
| 48 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2d, k2e, \ | ||
| 49 | k30, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \ | ||
| 50 | k40, k41, k42, k46, k49, k4a, k4b, k4c, k4d, k4e \ | ||
| 51 | ) \ | ||
| 52 | { \ | ||
| 53 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, XXX }, \ | ||
| 54 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, XXX }, \ | ||
| 55 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, XXX, k2d, k2e, XXX }, \ | ||
| 56 | { k30, XXX, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, XXX }, \ | ||
| 57 | { k40, k41, k42, XXX, XXX, XXX, k46, XXX, XXX, k49, k4a, k4b, k4c, k4d, k4e, XXX } \ | ||
| 58 | } | ||
| 59 | |||
| 60 | #define LAYOUT_65_ansi_blocker( \ | ||
| 61 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, \ | ||
| 62 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, \ | ||
| 63 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2d, k2e, \ | ||
| 64 | k30, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \ | ||
| 65 | k40, k41, k42, k46, k49, k4a, k4c, k4d, k4e \ | ||
| 66 | ) \ | ||
| 67 | { \ | ||
| 68 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, XXX }, \ | ||
| 69 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, XXX }, \ | ||
| 70 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, XXX, k2d, k2e, XXX }, \ | ||
| 71 | { k30, XXX, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, XXX }, \ | ||
| 72 | { k40, k41, k42, XXX, XXX, XXX, k46, XXX, XXX, k49, k4a, XXX, k4c, k4d, k4e, XXX } \ | ||
| 73 | } | ||
| 74 | |||
| 75 | #define LAYOUT_65_iso( \ | ||
| 76 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, \ | ||
| 77 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1e, \ | ||
| 78 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, \ | ||
| 79 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \ | ||
| 80 | k40, k41, k42, k46, k49, k4a, k4b, k4c, k4d, k4e \ | ||
| 81 | ) \ | ||
| 82 | { \ | ||
| 83 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, XXX }, \ | ||
| 84 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, XXX, k1e, XXX }, \ | ||
| 85 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, XXX }, \ | ||
| 86 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, XXX }, \ | ||
| 87 | { k40, k41, k42, XXX, XXX, XXX, k46, XXX, XXX, k49, k4a, k4b, k4c, k4d, k4e, XXX } \ | ||
| 88 | } | ||
| 89 | |||
| 90 | #define LAYOUT_65_iso_blocker( \ | ||
| 91 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, \ | ||
| 92 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1e, \ | ||
| 93 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, \ | ||
| 94 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \ | ||
| 95 | k40, k41, k42, k46, k49, k4a, k4c, k4d, k4e \ | ||
| 96 | ) \ | ||
| 97 | { \ | ||
| 98 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, XXX }, \ | ||
| 99 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, XXX, k1e, XXX }, \ | ||
| 100 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, XXX }, \ | ||
| 101 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, XXX }, \ | ||
| 102 | { k40, k41, k42, XXX, XXX, XXX, k46, XXX, XXX, k49, k4a, XXX, k4c, k4d, k4e, XXX } \ | ||
| 103 | } | ||
diff --git a/keyboards/maartenwut/eon65/info.json b/keyboards/maartenwut/eon65/info.json new file mode 100644 index 000000000..1a9f74957 --- /dev/null +++ b/keyboards/maartenwut/eon65/info.json | |||
| @@ -0,0 +1,392 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Eon65", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 16, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_all": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0, "y":0}, | ||
| 11 | {"x":1, "y":0}, | ||
| 12 | {"x":2, "y":0}, | ||
| 13 | {"x":3, "y":0}, | ||
| 14 | {"x":4, "y":0}, | ||
| 15 | {"x":5, "y":0}, | ||
| 16 | {"x":6, "y":0}, | ||
| 17 | {"x":7, "y":0}, | ||
| 18 | {"x":8, "y":0}, | ||
| 19 | {"x":9, "y":0}, | ||
| 20 | {"x":10, "y":0}, | ||
| 21 | {"x":11, "y":0}, | ||
| 22 | {"x":12, "y":0}, | ||
| 23 | {"x":13, "y":0}, | ||
| 24 | {"x":14, "y":0}, | ||
| 25 | {"x":15, "y":0}, | ||
| 26 | |||
| 27 | {"x":0, "y":1, "w":1.5}, | ||
| 28 | {"x":1.5, "y":1}, | ||
| 29 | {"x":2.5, "y":1}, | ||
| 30 | {"x":3.5, "y":1}, | ||
| 31 | {"x":4.5, "y":1}, | ||
| 32 | {"x":5.5, "y":1}, | ||
| 33 | {"x":6.5, "y":1}, | ||
| 34 | {"x":7.5, "y":1}, | ||
| 35 | {"x":8.5, "y":1}, | ||
| 36 | {"x":9.5, "y":1}, | ||
| 37 | {"x":10.5, "y":1}, | ||
| 38 | {"x":11.5, "y":1}, | ||
| 39 | {"x":12.5, "y":1}, | ||
| 40 | {"x":13.5, "y":1, "w":1.5}, | ||
| 41 | {"x":15, "y":1}, | ||
| 42 | |||
| 43 | {"x":0, "y":2, "w":1.75}, | ||
| 44 | {"x":1.75, "y":2}, | ||
| 45 | {"x":2.75, "y":2}, | ||
| 46 | {"x":3.75, "y":2}, | ||
| 47 | {"x":4.75, "y":2}, | ||
| 48 | {"x":5.75, "y":2}, | ||
| 49 | {"x":6.75, "y":2}, | ||
| 50 | {"x":7.75, "y":2}, | ||
| 51 | {"x":8.75, "y":2}, | ||
| 52 | {"x":9.75, "y":2}, | ||
| 53 | {"x":10.75, "y":2}, | ||
| 54 | {"x":11.75, "y":2}, | ||
| 55 | {"x":12.75, "y":2}, | ||
| 56 | {"x":13.75, "y":2, "w":1.25}, | ||
| 57 | {"x":15, "y":2}, | ||
| 58 | |||
| 59 | {"x":0, "y":3, "w":1.25}, | ||
| 60 | {"x":1.25, "y":3}, | ||
| 61 | {"x":2.25, "y":3}, | ||
| 62 | {"x":3.25, "y":3}, | ||
| 63 | {"x":4.25, "y":3}, | ||
| 64 | {"x":5.25, "y":3}, | ||
| 65 | {"x":6.25, "y":3}, | ||
| 66 | {"x":7.25, "y":3}, | ||
| 67 | {"x":8.25, "y":3}, | ||
| 68 | {"x":9.25, "y":3}, | ||
| 69 | {"x":10.25, "y":3}, | ||
| 70 | {"x":11.25, "y":3}, | ||
| 71 | {"x":12.25, "y":3, "w":1.75}, | ||
| 72 | {"x":14, "y":3}, | ||
| 73 | {"x":15, "y":3}, | ||
| 74 | |||
| 75 | {"x":0, "y":4, "w":1.25}, | ||
| 76 | {"x":1.25, "y":4, "w":1.25}, | ||
| 77 | {"x":2.5, "y":4, "w":1.25}, | ||
| 78 | {"x":3.75, "y":4, "w":6.25}, | ||
| 79 | {"x":10, "y":4}, | ||
| 80 | {"x":11, "y":4}, | ||
| 81 | {"x":12, "y":4}, | ||
| 82 | {"x":13, "y":4}, | ||
| 83 | {"x":14, "y":4}, | ||
| 84 | {"x":15, "y":4} | ||
| 85 | ] | ||
| 86 | }, | ||
| 87 | "LAYOUT_65_ansi": { | ||
| 88 | "layout": [ | ||
| 89 | {"x":0, "y":0}, | ||
| 90 | {"x":1, "y":0}, | ||
| 91 | {"x":2, "y":0}, | ||
| 92 | {"x":3, "y":0}, | ||
| 93 | {"x":4, "y":0}, | ||
| 94 | {"x":5, "y":0}, | ||
| 95 | {"x":6, "y":0}, | ||
| 96 | {"x":7, "y":0}, | ||
| 97 | {"x":8, "y":0}, | ||
| 98 | {"x":9, "y":0}, | ||
| 99 | {"x":10, "y":0}, | ||
| 100 | {"x":11, "y":0}, | ||
| 101 | {"x":12, "y":0}, | ||
| 102 | {"x":13, "y":0, "w":2}, | ||
| 103 | {"x":15, "y":0}, | ||
| 104 | |||
| 105 | {"x":0, "y":1, "w":1.5}, | ||
| 106 | {"x":1.5, "y":1}, | ||
| 107 | {"x":2.5, "y":1}, | ||
| 108 | {"x":3.5, "y":1}, | ||
| 109 | {"x":4.5, "y":1}, | ||
| 110 | {"x":5.5, "y":1}, | ||
| 111 | {"x":6.5, "y":1}, | ||
| 112 | {"x":7.5, "y":1}, | ||
| 113 | {"x":8.5, "y":1}, | ||
| 114 | {"x":9.5, "y":1}, | ||
| 115 | {"x":10.5, "y":1}, | ||
| 116 | {"x":11.5, "y":1}, | ||
| 117 | {"x":12.5, "y":1}, | ||
| 118 | {"x":13.5, "y":1, "w":1.5}, | ||
| 119 | {"x":15, "y":1}, | ||
| 120 | |||
| 121 | {"x":0, "y":2, "w":1.75}, | ||
| 122 | {"x":1.75, "y":2}, | ||
| 123 | {"x":2.75, "y":2}, | ||
| 124 | {"x":3.75, "y":2}, | ||
| 125 | {"x":4.75, "y":2}, | ||
| 126 | {"x":5.75, "y":2}, | ||
| 127 | {"x":6.75, "y":2}, | ||
| 128 | {"x":7.75, "y":2}, | ||
| 129 | {"x":8.75, "y":2}, | ||
| 130 | {"x":9.75, "y":2}, | ||
| 131 | {"x":10.75, "y":2}, | ||
| 132 | {"x":11.75, "y":2}, | ||
| 133 | {"x":12.75, "y":2, "w":2.25}, | ||
| 134 | {"x":15, "y":2}, | ||
| 135 | |||
| 136 | {"x":0, "y":3, "w":2.25}, | ||
| 137 | {"x":2.25, "y":3}, | ||
| 138 | {"x":3.25, "y":3}, | ||
| 139 | {"x":4.25, "y":3}, | ||
| 140 | {"x":5.25, "y":3}, | ||
| 141 | {"x":6.25, "y":3}, | ||
| 142 | {"x":7.25, "y":3}, | ||
| 143 | {"x":8.25, "y":3}, | ||
| 144 | {"x":9.25, "y":3}, | ||
| 145 | {"x":10.25, "y":3}, | ||
| 146 | {"x":11.25, "y":3}, | ||
| 147 | {"x":12.25, "y":3, "w":1.75}, | ||
| 148 | {"x":14, "y":3}, | ||
| 149 | {"x":15, "y":3}, | ||
| 150 | |||
| 151 | {"x":0, "y":4, "w":1.25}, | ||
| 152 | {"x":1.25, "y":4, "w":1.25}, | ||
| 153 | {"x":2.5, "y":4, "w":1.25}, | ||
| 154 | {"x":3.75, "y":4, "w":6.25}, | ||
| 155 | {"x":10, "y":4}, | ||
| 156 | {"x":11, "y":4}, | ||
| 157 | {"x":12, "y":4}, | ||
| 158 | {"x":13, "y":4}, | ||
| 159 | {"x":14, "y":4}, | ||
| 160 | {"x":15, "y":4} | ||
| 161 | ] | ||
| 162 | }, | ||
| 163 | "LAYOUT_65_ansi_blocker": { | ||
| 164 | "layout": [ | ||
| 165 | {"x":0, "y":0}, | ||
| 166 | {"x":1, "y":0}, | ||
| 167 | {"x":2, "y":0}, | ||
| 168 | {"x":3, "y":0}, | ||
| 169 | {"x":4, "y":0}, | ||
| 170 | {"x":5, "y":0}, | ||
| 171 | {"x":6, "y":0}, | ||
| 172 | {"x":7, "y":0}, | ||
| 173 | {"x":8, "y":0}, | ||
| 174 | {"x":9, "y":0}, | ||
| 175 | {"x":10, "y":0}, | ||
| 176 | {"x":11, "y":0}, | ||
| 177 | {"x":12, "y":0}, | ||
| 178 | {"x":13, "y":0, "w":2}, | ||
| 179 | {"x":15, "y":0}, | ||
| 180 | |||
| 181 | {"x":0, "y":1, "w":1.5}, | ||
| 182 | {"x":1.5, "y":1}, | ||
| 183 | {"x":2.5, "y":1}, | ||
| 184 | {"x":3.5, "y":1}, | ||
| 185 | {"x":4.5, "y":1}, | ||
| 186 | {"x":5.5, "y":1}, | ||
| 187 | {"x":6.5, "y":1}, | ||
| 188 | {"x":7.5, "y":1}, | ||
| 189 | {"x":8.5, "y":1}, | ||
| 190 | {"x":9.5, "y":1}, | ||
| 191 | {"x":10.5, "y":1}, | ||
| 192 | {"x":11.5, "y":1}, | ||
| 193 | {"x":12.5, "y":1}, | ||
| 194 | {"x":13.5, "y":1, "w":1.5}, | ||
| 195 | {"x":15, "y":1}, | ||
| 196 | |||
| 197 | {"x":0, "y":2, "w":1.75}, | ||
| 198 | {"x":1.75, "y":2}, | ||
| 199 | {"x":2.75, "y":2}, | ||
| 200 | {"x":3.75, "y":2}, | ||
| 201 | {"x":4.75, "y":2}, | ||
| 202 | {"x":5.75, "y":2}, | ||
| 203 | {"x":6.75, "y":2}, | ||
| 204 | {"x":7.75, "y":2}, | ||
| 205 | {"x":8.75, "y":2}, | ||
| 206 | {"x":9.75, "y":2}, | ||
| 207 | {"x":10.75, "y":2}, | ||
| 208 | {"x":11.75, "y":2}, | ||
| 209 | {"x":12.75, "y":2, "w":2.25}, | ||
| 210 | {"x":15, "y":2}, | ||
| 211 | |||
| 212 | {"x":0, "y":3, "w":2.25}, | ||
| 213 | {"x":2.25, "y":3}, | ||
| 214 | {"x":3.25, "y":3}, | ||
| 215 | {"x":4.25, "y":3}, | ||
| 216 | {"x":5.25, "y":3}, | ||
| 217 | {"x":6.25, "y":3}, | ||
| 218 | {"x":7.25, "y":3}, | ||
| 219 | {"x":8.25, "y":3}, | ||
| 220 | {"x":9.25, "y":3}, | ||
| 221 | {"x":10.25, "y":3}, | ||
| 222 | {"x":11.25, "y":3}, | ||
| 223 | {"x":12.25, "y":3, "w":1.75}, | ||
| 224 | {"x":14, "y":3}, | ||
| 225 | {"x":15, "y":3}, | ||
| 226 | |||
| 227 | {"x":0, "y":4, "w":1.25}, | ||
| 228 | {"x":1.25, "y":4, "w":1.25}, | ||
| 229 | {"x":2.5, "y":4, "w":1.25}, | ||
| 230 | {"x":3.75, "y":4, "w":6.25}, | ||
| 231 | {"x":10, "y":4, "w":1.25}, | ||
| 232 | {"x":11.25, "y":4, "w":1.25}, | ||
| 233 | {"x":13, "y":4}, | ||
| 234 | {"x":14, "y":4}, | ||
| 235 | {"x":15, "y":4} | ||
| 236 | ] | ||
| 237 | }, | ||
| 238 | "LAYOUT_65_iso": { | ||
| 239 | "layout": [ | ||
| 240 | {"x":0, "y":0}, | ||
| 241 | {"x":1, "y":0}, | ||
| 242 | {"x":2, "y":0}, | ||
| 243 | {"x":3, "y":0}, | ||
| 244 | {"x":4, "y":0}, | ||
| 245 | {"x":5, "y":0}, | ||
| 246 | {"x":6, "y":0}, | ||
| 247 | {"x":7, "y":0}, | ||
| 248 | {"x":8, "y":0}, | ||
| 249 | {"x":9, "y":0}, | ||
| 250 | {"x":10, "y":0}, | ||
| 251 | {"x":11, "y":0}, | ||
| 252 | {"x":12, "y":0}, | ||
| 253 | {"x":13, "y":0, "w":2}, | ||
| 254 | {"x":15, "y":0}, | ||
| 255 | |||
| 256 | {"x":0, "y":1, "w":1.5}, | ||
| 257 | {"x":1.5, "y":1}, | ||
| 258 | {"x":2.5, "y":1}, | ||
| 259 | {"x":3.5, "y":1}, | ||
| 260 | {"x":4.5, "y":1}, | ||
| 261 | {"x":5.5, "y":1}, | ||
| 262 | {"x":6.5, "y":1}, | ||
| 263 | {"x":7.5, "y":1}, | ||
| 264 | {"x":8.5, "y":1}, | ||
| 265 | {"x":9.5, "y":1}, | ||
| 266 | {"x":10.5, "y":1}, | ||
| 267 | {"x":11.5, "y":1}, | ||
| 268 | {"x":12.5, "y":1}, | ||
| 269 | {"x":15, "y":1}, | ||
| 270 | |||
| 271 | {"x":0, "y":2, "w":1.75}, | ||
| 272 | {"x":1.75, "y":2}, | ||
| 273 | {"x":2.75, "y":2}, | ||
| 274 | {"x":3.75, "y":2}, | ||
| 275 | {"x":4.75, "y":2}, | ||
| 276 | {"x":5.75, "y":2}, | ||
| 277 | {"x":6.75, "y":2}, | ||
| 278 | {"x":7.75, "y":2}, | ||
| 279 | {"x":8.75, "y":2}, | ||
| 280 | {"x":9.75, "y":2}, | ||
| 281 | {"x":10.75, "y":2}, | ||
| 282 | {"x":11.75, "y":2}, | ||
| 283 | {"x":12.75, "y":2}, | ||
| 284 | {"x":13.75, "y":1, "w":1.25, "h":2}, | ||
| 285 | {"x":15, "y":2}, | ||
| 286 | |||
| 287 | {"x":0, "y":3, "w":1.25}, | ||
| 288 | {"x":1.25, "y":3}, | ||
| 289 | {"x":2.25, "y":3}, | ||
| 290 | {"x":3.25, "y":3}, | ||
| 291 | {"x":4.25, "y":3}, | ||
| 292 | {"x":5.25, "y":3}, | ||
| 293 | {"x":6.25, "y":3}, | ||
| 294 | {"x":7.25, "y":3}, | ||
| 295 | {"x":8.25, "y":3}, | ||
| 296 | {"x":9.25, "y":3}, | ||
| 297 | {"x":10.25, "y":3}, | ||
| 298 | {"x":11.25, "y":3}, | ||
| 299 | {"x":12.25, "y":3, "w":1.75}, | ||
| 300 | {"x":14, "y":3}, | ||
| 301 | {"x":15, "y":3}, | ||
| 302 | |||
| 303 | {"x":0, "y":4, "w":1.25}, | ||
| 304 | {"x":1.25, "y":4, "w":1.25}, | ||
| 305 | {"x":2.5, "y":4, "w":1.25}, | ||
| 306 | {"x":3.75, "y":4, "w":6.25}, | ||
| 307 | {"x":10, "y":4}, | ||
| 308 | {"x":11, "y":4}, | ||
| 309 | {"x":12, "y":4}, | ||
| 310 | {"x":13, "y":4}, | ||
| 311 | {"x":14, "y":4}, | ||
| 312 | {"x":15, "y":4} | ||
| 313 | ] | ||
| 314 | }, | ||
| 315 | "LAYOUT_65_iso_blocker": { | ||
| 316 | "layout": [ | ||
| 317 | {"x":0, "y":0}, | ||
| 318 | {"x":1, "y":0}, | ||
| 319 | {"x":2, "y":0}, | ||
| 320 | {"x":3, "y":0}, | ||
| 321 | {"x":4, "y":0}, | ||
| 322 | {"x":5, "y":0}, | ||
| 323 | {"x":6, "y":0}, | ||
| 324 | {"x":7, "y":0}, | ||
| 325 | {"x":8, "y":0}, | ||
| 326 | {"x":9, "y":0}, | ||
| 327 | {"x":10, "y":0}, | ||
| 328 | {"x":11, "y":0}, | ||
| 329 | {"x":12, "y":0}, | ||
| 330 | {"x":13, "y":0, "w":2}, | ||
| 331 | {"x":15, "y":0}, | ||
| 332 | |||
| 333 | {"x":0, "y":1, "w":1.5}, | ||
| 334 | {"x":1.5, "y":1}, | ||
| 335 | {"x":2.5, "y":1}, | ||
| 336 | {"x":3.5, "y":1}, | ||
| 337 | {"x":4.5, "y":1}, | ||
| 338 | {"x":5.5, "y":1}, | ||
| 339 | {"x":6.5, "y":1}, | ||
| 340 | {"x":7.5, "y":1}, | ||
| 341 | {"x":8.5, "y":1}, | ||
| 342 | {"x":9.5, "y":1}, | ||
| 343 | {"x":10.5, "y":1}, | ||
| 344 | {"x":11.5, "y":1}, | ||
| 345 | {"x":12.5, "y":1}, | ||
| 346 | {"x":15, "y":1}, | ||
| 347 | |||
| 348 | {"x":0, "y":2, "w":1.75}, | ||
| 349 | {"x":1.75, "y":2}, | ||
| 350 | {"x":2.75, "y":2}, | ||
| 351 | {"x":3.75, "y":2}, | ||
| 352 | {"x":4.75, "y":2}, | ||
| 353 | {"x":5.75, "y":2}, | ||
| 354 | {"x":6.75, "y":2}, | ||
| 355 | {"x":7.75, "y":2}, | ||
| 356 | {"x":8.75, "y":2}, | ||
| 357 | {"x":9.75, "y":2}, | ||
| 358 | {"x":10.75, "y":2}, | ||
| 359 | {"x":11.75, "y":2}, | ||
| 360 | {"x":12.75, "y":2}, | ||
| 361 | {"x":13.75, "y":1, "w":1.25, "h":2}, | ||
| 362 | {"x":15, "y":2}, | ||
| 363 | |||
| 364 | {"x":0, "y":3, "w":1.25}, | ||
| 365 | {"x":1.25, "y":3}, | ||
| 366 | {"x":2.25, "y":3}, | ||
| 367 | {"x":3.25, "y":3}, | ||
| 368 | {"x":4.25, "y":3}, | ||
| 369 | {"x":5.25, "y":3}, | ||
| 370 | {"x":6.25, "y":3}, | ||
| 371 | {"x":7.25, "y":3}, | ||
| 372 | {"x":8.25, "y":3}, | ||
| 373 | {"x":9.25, "y":3}, | ||
| 374 | {"x":10.25, "y":3}, | ||
| 375 | {"x":11.25, "y":3}, | ||
| 376 | {"x":12.25, "y":3, "w":1.75}, | ||
| 377 | {"x":14, "y":3}, | ||
| 378 | {"x":15, "y":3}, | ||
| 379 | |||
| 380 | {"x":0, "y":4, "w":1.25}, | ||
| 381 | {"x":1.25, "y":4, "w":1.25}, | ||
| 382 | {"x":2.5, "y":4, "w":1.25}, | ||
| 383 | {"x":3.75, "y":4, "w":6.25}, | ||
| 384 | {"x":10, "y":4, "w":1.25}, | ||
| 385 | {"x":11.25, "y":4, "w":1.25}, | ||
| 386 | {"x":13, "y":4}, | ||
| 387 | {"x":14, "y":4}, | ||
| 388 | {"x":15, "y":4} | ||
| 389 | ] | ||
| 390 | } | ||
| 391 | } | ||
| 392 | } | ||
diff --git a/keyboards/maartenwut/eon65/keymaps/default/keymap.c b/keyboards/maartenwut/eon65/keymaps/default/keymap.c new file mode 100644 index 000000000..e5ef976e8 --- /dev/null +++ b/keyboards/maartenwut/eon65/keymaps/default/keymap.c | |||
| @@ -0,0 +1,32 @@ | |||
| 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_GESC, 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_INS, | ||
| 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, | ||
| 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_NUHS, KC_ENT, KC_PGUP, | ||
| 23 | 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_PGDN, | ||
| 24 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), | ||
| 25 | [1] = LAYOUT_all( | ||
| 26 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 27 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
| 31 | |||
| 32 | }; \ No newline at end of file | ||
diff --git a/keyboards/maartenwut/eon65/keymaps/via/keymap.c b/keyboards/maartenwut/eon65/keymaps/via/keymap.c new file mode 100644 index 000000000..52a1f9420 --- /dev/null +++ b/keyboards/maartenwut/eon65/keymaps/via/keymap.c | |||
| @@ -0,0 +1,43 @@ | |||
| 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_GESC, 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_INS, | ||
| 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, | ||
| 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_NUHS, KC_ENT, KC_PGUP, | ||
| 23 | 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_PGDN, | ||
| 24 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), | ||
| 25 | [1] = LAYOUT_all( | ||
| 26 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 27 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
| 31 | [2] = LAYOUT_all( | ||
| 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 33 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
| 37 | [3] = LAYOUT_all( | ||
| 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 40 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______) | ||
| 43 | }; \ No newline at end of file | ||
diff --git a/keyboards/maartenwut/eon65/keymaps/via/rules.mk b/keyboards/maartenwut/eon65/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/maartenwut/eon65/keymaps/via/rules.mk | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | VIA_ENABLE = yes | ||
| 2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/maartenwut/eon65/readme.md b/keyboards/maartenwut/eon65/readme.md new file mode 100644 index 000000000..e77ad6826 --- /dev/null +++ b/keyboards/maartenwut/eon65/readme.md | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # Eon65 | ||
| 2 | |||
| 3 | ## Support | ||
| 4 | * Keyboard Maintainer: [Maarten Dekkers](https://github.com/maartenwut) | ||
| 5 | * Hardware Supported: Eon65 | ||
| 6 | * Hardware Availability: None | ||
| 7 | |||
| 8 | ## Build | ||
| 9 | Make example for this keyboard (after setting up your build environment): | ||
| 10 | |||
| 11 | make maartenwut/eon65: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/eon65/rules.mk b/keyboards/maartenwut/eon65/rules.mk new file mode 100644 index 000000000..e34ef7475 --- /dev/null +++ b/keyboards/maartenwut/eon65/rules.mk | |||
| @@ -0,0 +1,34 @@ | |||
| 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 = yes # 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 | ||
| 33 | |||
| 34 | LAYOUTS = 65_ansi 65_ansi_blocker 65_iso 65_iso_blocker | ||
