diff options
| author | Danny <nooges@users.noreply.github.com> | 2019-07-23 18:06:47 -0400 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-07-23 15:06:47 -0700 |
| commit | 207fde997f11bfed92087327b91cc16ed0fbb3dc (patch) | |
| tree | bade225f14048b01e787aab74651ed7c4250ab7f | |
| parent | b1691ba696db90f0d9143a8e0213a2b93434c9b1 (diff) | |
| download | qmk_firmware-207fde997f11bfed92087327b91cc16ed0fbb3dc.tar.gz qmk_firmware-207fde997f11bfed92087327b91cc16ed0fbb3dc.zip | |
[Keyboard] Add ergodicity (#6396)
* Initial addition of Ergodicity
* Add QMK configurator JSON
| -rw-r--r-- | keyboards/keebio/ergodicity/config.h | 233 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/ergodicity.c | 51 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/ergodicity.h | 41 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/info.json | 82 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/keymaps/default/config.h | 19 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/keymaps/default/keymap.c | 73 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/keebio/ergodicity/rules.mk | 80 |
9 files changed, 595 insertions, 0 deletions
diff --git a/keyboards/keebio/ergodicity/config.h b/keyboards/keebio/ergodicity/config.h new file mode 100644 index 000000000..a74381627 --- /dev/null +++ b/keyboards/keebio/ergodicity/config.h | |||
| @@ -0,0 +1,233 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2019 Keebio | ||
| 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 0xCB10 | ||
| 24 | #define PRODUCT_ID 0x125F | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Keebio | ||
| 27 | #define PRODUCT Ergodicity | ||
| 28 | #define DESCRIPTION Low-profile ergo keyboard | ||
| 29 | |||
| 30 | /* key matrix size */ | ||
| 31 | #define MATRIX_ROWS 5 | ||
| 32 | #define MATRIX_COLS 15 | ||
| 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 { B0, B1, C7, B6, B4 } | ||
| 45 | #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, D7, D6, D4, D3, D2, D1, D0, B7, B3 } | ||
| 46 | #define UNUSED_PINS | ||
| 47 | |||
| 48 | /* COL2ROW, ROW2COL*/ | ||
| 49 | #define DIODE_DIRECTION COL2ROW | ||
| 50 | |||
| 51 | /* | ||
| 52 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 53 | */ | ||
| 54 | // #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 55 | |||
| 56 | #define BACKLIGHT_PIN B5 | ||
| 57 | #define BACKLIGHT_BREATHING | ||
| 58 | #define BACKLIGHT_LEVELS 7 | ||
| 59 | |||
| 60 | #define RGB_DI_PIN B2 | ||
| 61 | #ifdef RGB_DI_PIN | ||
| 62 | #define RGBLED_NUM 12 | ||
| 63 | #define RGBLIGHT_HUE_STEP 8 | ||
| 64 | #define RGBLIGHT_SAT_STEP 8 | ||
| 65 | #define RGBLIGHT_VAL_STEP 8 | ||
| 66 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 67 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 68 | /*== all animations enable ==*/ | ||
| 69 | #define RGBLIGHT_ANIMATIONS | ||
| 70 | #endif | ||
| 71 | |||
| 72 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 73 | #define DEBOUNCE 5 | ||
| 74 | |||
| 75 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 76 | //#define MATRIX_HAS_GHOST | ||
| 77 | |||
| 78 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 79 | #define LOCKING_SUPPORT_ENABLE | ||
| 80 | /* Locking resynchronize hack */ | ||
| 81 | #define LOCKING_RESYNC_ENABLE | ||
| 82 | |||
| 83 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 84 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 85 | */ | ||
| 86 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
| 87 | |||
| 88 | /* | ||
| 89 | * Force NKRO | ||
| 90 | * | ||
| 91 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 92 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 93 | * makefile for this to work.) | ||
| 94 | * | ||
| 95 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 96 | * until the next keyboard reset. | ||
| 97 | * | ||
| 98 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 99 | * fully operational during normal computer usage. | ||
| 100 | * | ||
| 101 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 102 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 103 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 104 | * power-up. | ||
| 105 | * | ||
| 106 | */ | ||
| 107 | //#define FORCE_NKRO | ||
| 108 | |||
| 109 | /* | ||
| 110 | * Magic Key Options | ||
| 111 | * | ||
| 112 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
| 113 | * the keyboard. They are best used in combination with the HID Listen program, | ||
| 114 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
| 115 | * | ||
| 116 | * The options below allow the magic key functionality to be changed. This is | ||
| 117 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
| 118 | * | ||
| 119 | */ | ||
| 120 | |||
| 121 | /* key combination for magic key command */ | ||
| 122 | /* defined by default; to change, uncomment and set to the combination you want */ | ||
| 123 | // #define IS_COMMAND() (get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) | ||
| 124 | |||
| 125 | /* control how magic key switches layers */ | ||
| 126 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 127 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 128 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 129 | |||
| 130 | /* override magic key keymap */ | ||
| 131 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 132 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 133 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 134 | //#define MAGIC_KEY_HELP H | ||
| 135 | //#define MAGIC_KEY_HELP_ALT SLASH | ||
| 136 | //#define MAGIC_KEY_DEBUG D | ||
| 137 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 138 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 139 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 140 | //#define MAGIC_KEY_VERSION V | ||
| 141 | //#define MAGIC_KEY_STATUS S | ||
| 142 | //#define MAGIC_KEY_CONSOLE C | ||
| 143 | //#define MAGIC_KEY_LAYER0 0 | ||
| 144 | //#define MAGIC_KEY_LAYER0_ALT GRAVE | ||
| 145 | //#define MAGIC_KEY_LAYER1 1 | ||
| 146 | //#define MAGIC_KEY_LAYER2 2 | ||
| 147 | //#define MAGIC_KEY_LAYER3 3 | ||
| 148 | //#define MAGIC_KEY_LAYER4 4 | ||
| 149 | //#define MAGIC_KEY_LAYER5 5 | ||
| 150 | //#define MAGIC_KEY_LAYER6 6 | ||
| 151 | //#define MAGIC_KEY_LAYER7 7 | ||
| 152 | //#define MAGIC_KEY_LAYER8 8 | ||
| 153 | //#define MAGIC_KEY_LAYER9 9 | ||
| 154 | //#define MAGIC_KEY_BOOTLOADER B | ||
| 155 | //#define MAGIC_KEY_BOOTLOADER_ALT ESC | ||
| 156 | //#define MAGIC_KEY_LOCK CAPS | ||
| 157 | //#define MAGIC_KEY_EEPROM E | ||
| 158 | //#define MAGIC_KEY_EEPROM_CLEAR BSPACE | ||
| 159 | //#define MAGIC_KEY_NKRO N | ||
| 160 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 161 | |||
| 162 | /* | ||
| 163 | * Feature disable options | ||
| 164 | * These options are also useful to firmware size reduction. | ||
| 165 | */ | ||
| 166 | |||
| 167 | /* disable debug print */ | ||
| 168 | //#define NO_DEBUG | ||
| 169 | |||
| 170 | /* disable print */ | ||
| 171 | //#define NO_PRINT | ||
| 172 | |||
| 173 | /* disable action features */ | ||
| 174 | //#define NO_ACTION_LAYER | ||
| 175 | //#define NO_ACTION_TAPPING | ||
| 176 | //#define NO_ACTION_ONESHOT | ||
| 177 | //#define NO_ACTION_MACRO | ||
| 178 | //#define NO_ACTION_FUNCTION | ||
| 179 | |||
| 180 | /* | ||
| 181 | * MIDI options | ||
| 182 | */ | ||
| 183 | |||
| 184 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 185 | //#define MIDI_ENABLE_STRICT 1 | ||
| 186 | |||
| 187 | /* enable basic MIDI features: | ||
| 188 | - MIDI notes can be sent when in Music mode is on | ||
| 189 | */ | ||
| 190 | //#define MIDI_BASIC | ||
| 191 | |||
| 192 | /* enable advanced MIDI features: | ||
| 193 | - MIDI notes can be added to the keymap | ||
| 194 | - Octave shift and transpose | ||
| 195 | - Virtual sustain, portamento, and modulation wheel | ||
| 196 | - etc. | ||
| 197 | */ | ||
| 198 | //#define MIDI_ADVANCED | ||
| 199 | |||
| 200 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 201 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
| 202 | |||
| 203 | /* | ||
| 204 | * HD44780 LCD Display Configuration | ||
| 205 | */ | ||
| 206 | /* | ||
| 207 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 208 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 209 | |||
| 210 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 211 | |||
| 212 | #if LCD_IO_MODE | ||
| 213 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 214 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 215 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 216 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 217 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 218 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 219 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 220 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 221 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 222 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 223 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 224 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 225 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 226 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 227 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 228 | #endif | ||
| 229 | */ | ||
| 230 | |||
| 231 | /* Bootmagic Lite key configuration */ | ||
| 232 | // #define BOOTMAGIC_LITE_ROW 0 | ||
| 233 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/keebio/ergodicity/ergodicity.c b/keyboards/keebio/ergodicity/ergodicity.c new file mode 100644 index 000000000..0bbcf6117 --- /dev/null +++ b/keyboards/keebio/ergodicity/ergodicity.c | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | /* Copyright 2019 Keebio | ||
| 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 "ergodicity.h" | ||
| 17 | |||
| 18 | // Optional override functions below. | ||
| 19 | // You can leave any or all of these undefined. | ||
| 20 | // These are only required if you want to perform custom actions. | ||
| 21 | |||
| 22 | /* | ||
| 23 | |||
| 24 | void matrix_init_kb(void) { | ||
| 25 | // put your keyboard start-up code here | ||
| 26 | // runs once when the firmware starts up | ||
| 27 | |||
| 28 | matrix_init_user(); | ||
| 29 | } | ||
| 30 | |||
| 31 | void matrix_scan_kb(void) { | ||
| 32 | // put your looping keyboard code here | ||
| 33 | // runs every cycle (a lot) | ||
| 34 | |||
| 35 | matrix_scan_user(); | ||
| 36 | } | ||
| 37 | |||
| 38 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 39 | // put your per-action keyboard code here | ||
| 40 | // runs for every action, just before processing by the firmware | ||
| 41 | |||
| 42 | return process_record_user(keycode, record); | ||
| 43 | } | ||
| 44 | |||
| 45 | void led_set_kb(uint8_t usb_led) { | ||
| 46 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 47 | |||
| 48 | led_set_user(usb_led); | ||
| 49 | } | ||
| 50 | |||
| 51 | */ | ||
diff --git a/keyboards/keebio/ergodicity/ergodicity.h b/keyboards/keebio/ergodicity/ergodicity.h new file mode 100644 index 000000000..156ad828a --- /dev/null +++ b/keyboards/keebio/ergodicity/ergodicity.h | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | /* Copyright 2019 Keebio | ||
| 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 | |||
| 20 | /* This a shortcut to help you visually see your layout. | ||
| 21 | * | ||
| 22 | * The first section contains all of the arguments representing the physical | ||
| 23 | * layout of the board and position of the keys. | ||
| 24 | * | ||
| 25 | * The second converts the arguments into a two-dimensional array which | ||
| 26 | * represents the switch matrix. | ||
| 27 | */ | ||
| 28 | #define LAYOUT( \ | ||
| 29 | kA1, kA2, kA3, kE3, kA4, kA5, kA6, kA7, kA8, kA9, kA10, kA11, kA12, kA13, kA15, \ | ||
| 30 | kB1, kB2, kB3, kB4, kB5, kB6, kB7, kB8, kB9, kB10, kB11, kB12, kB13, kB14, kB15, \ | ||
| 31 | kC1, kC2, kC3, kC4, kC5, kC6, kC7, kC8, kC9, kC10, kC11, kC12, kC13, kC15, \ | ||
| 32 | kD2, kD3, kD4, kD5, kD6, kD7, kD8, kD9, kD10, kD11, kD12, kD13, kD14, kD15, \ | ||
| 33 | kE2, kE4, kE6, kE7, kE9, kE11, kE15 \ | ||
| 34 | ) \ | ||
| 35 | { \ | ||
| 36 | { kA1, kA2, kA3, kA4, kA5, kA6, kA7, kA8, kA9, kA10, kA11, kA12, kA13, KC_NO, kA15 }, \ | ||
| 37 | { kB1, kB2, kB3, kB4, kB5, kB6, kB7, kB8, kB9, kB10, kB11, kB12, kB13, kB14, kB15 }, \ | ||
| 38 | { kC1, kC2, kC3, kC4, kC5, kC6, kC7, kC8, kC9, kC10, kC11, kC12, kC13, KC_NO, kC15 }, \ | ||
| 39 | { KC_NO, kD2, kD3, kD4, kD5, kD6, kD7, kD8, kD9, kD10, kD11, kD12, kD13, kD14, kD15 }, \ | ||
| 40 | { KC_NO, kE2, kE3, kE4, KC_NO, kE6, kE7, KC_NO, kE9, KC_NO, kE11, KC_NO, KC_NO, kE15 } \ | ||
| 41 | } | ||
diff --git a/keyboards/keebio/ergodicity/info.json b/keyboards/keebio/ergodicity/info.json new file mode 100644 index 000000000..b019da3aa --- /dev/null +++ b/keyboards/keebio/ergodicity/info.json | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Ergodicity", | ||
| 3 | "url": "https://keeb.io", | ||
| 4 | "maintainer": "Keebio", | ||
| 5 | "width": 19.5, | ||
| 6 | "height": 5.25, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"Esc", "x":0.5, "y":0}, | ||
| 11 | {"label":"`", "x":1.75, "y":0.25}, | ||
| 12 | {"label":"1", "x":2.75, "y":0.25}, | ||
| 13 | {"label":"2", "x":3.75, "y":0}, | ||
| 14 | {"label":"3", "x":4.75, "y":0.25}, | ||
| 15 | {"label":"4", "x":5.75, "y":0.25}, | ||
| 16 | {"label":"5", "x":6.75, "y":0.25}, | ||
| 17 | {"label":"6", "x":7.75, "y":0.25}, | ||
| 18 | {"label":"7", "x":11, "y":0.25}, | ||
| 19 | {"label":"8", "x":12, "y":0.25}, | ||
| 20 | {"label":"9", "x":13, "y":0.25}, | ||
| 21 | {"label":"0", "x":14, "y":0.25}, | ||
| 22 | {"label":"-", "x":15, "y":0}, | ||
| 23 | {"label":"=", "x":16, "y":0.25}, | ||
| 24 | {"label":"Backspace", "x":17, "y":0.25, "w":2}, | ||
| 25 | |||
| 26 | {"label":"PgUp", "x":0.25, "y":1}, | ||
| 27 | {"label":"Tab", "x":1.5, "y":1.25, "w":1.5}, | ||
| 28 | {"label":"Q", "x":3, "y":1.25}, | ||
| 29 | {"label":"W", "x":4.25, "y":1.25}, | ||
| 30 | {"label":"E", "x":5.25, "y":1.25}, | ||
| 31 | {"label":"R", "x":6.25, "y":1.25}, | ||
| 32 | {"label":"T", "x":7.25, "y":1.25}, | ||
| 33 | {"label":"Y", "x":10.5, "y":1.25}, | ||
| 34 | {"label":"U", "x":11.5, "y":1.25}, | ||
| 35 | {"label":"I", "x":12.5, "y":1.25}, | ||
| 36 | {"label":"O", "x":13.5, "y":1.25}, | ||
| 37 | {"label":"P", "x":14.75, "y":1.25}, | ||
| 38 | {"label":"[", "x":15.75, "y":1.25}, | ||
| 39 | {"label":"]", "x":16.75, "y":1.25}, | ||
| 40 | {"label":"Backslash", "x":17.75, "y":1.25, "w":1.5}, | ||
| 41 | |||
| 42 | {"label":"PgDn", "x":0, "y":2}, | ||
| 43 | {"label":"Caps Lock", "x":1.25, "y":2.25, "w":2}, | ||
| 44 | {"label":"A", "x":3.25, "y":2.25}, | ||
| 45 | {"label":"S", "x":4.5, "y":2.25}, | ||
| 46 | {"label":"D", "x":5.5, "y":2.25}, | ||
| 47 | {"label":"F", "x":6.5, "y":2.25}, | ||
| 48 | {"label":"G", "x":7.5, "y":2.25}, | ||
| 49 | {"label":"H", "x":10.75, "y":2.25}, | ||
| 50 | {"label":"J", "x":11.75, "y":2.25}, | ||
| 51 | {"label":"K", "x":12.75, "y":2.25}, | ||
| 52 | {"label":"L", "x":13.75, "y":2.25}, | ||
| 53 | {"label":";", "x":15.25, "y":2.25}, | ||
| 54 | {"label":"'", "x":16.25, "y":2.25}, | ||
| 55 | {"label":"Enter", "x":17.25, "y":2.25, "w":2}, | ||
| 56 | |||
| 57 | {"label":"Shift", "x":1.25, "y":3.25, "w":2.5}, | ||
| 58 | {"label":"Z", "x":3.75, "y":3.25}, | ||
| 59 | {"label":"X", "x":5, "y":3.25}, | ||
| 60 | {"label":"C", "x":6, "y":3.25}, | ||
| 61 | {"label":"V", "x":7, "y":3.25}, | ||
| 62 | {"label":"B", "x":8, "y":3.25}, | ||
| 63 | {"label":"B", "x":10.25, "y":3.25}, | ||
| 64 | {"label":"N", "x":11.25, "y":3.25}, | ||
| 65 | {"label":"M", "x":12.25, "y":3.25}, | ||
| 66 | {"label":",", "x":13.25, "y":3.25}, | ||
| 67 | {"label":".", "x":14.75, "y":3.25}, | ||
| 68 | {"label":"/", "x":15.75, "y":3.25}, | ||
| 69 | {"label":"Shift", "x":16.75, "y":3.25, "w":1.5}, | ||
| 70 | {"label":"Fn", "x":18.25, "y":3.25}, | ||
| 71 | |||
| 72 | {"label":"Alt", "x":1.25, "y":4.25, "w":1.5}, | ||
| 73 | {"label":"Gui", "x":5, "y":4.25, "w":1.5}, | ||
| 74 | {"label":"Space", "x":6.5, "y":4.25, "w":2}, | ||
| 75 | {"label":"Menu", "x":8.5, "y":4.25}, | ||
| 76 | {"label":"Space", "x":10.25, "y":4.25, "w":2.5}, | ||
| 77 | {"label":"Alt", "x":12.75, "y":4.25, "w":1.5}, | ||
| 78 | {"label":"Fn", "x":17.75, "y":4.25, "w":1.5} | ||
| 79 | ] | ||
| 80 | } | ||
| 81 | } | ||
| 82 | } | ||
diff --git a/keyboards/keebio/ergodicity/keymaps/default/config.h b/keyboards/keebio/ergodicity/keymaps/default/config.h new file mode 100644 index 000000000..6079c0b0f --- /dev/null +++ b/keyboards/keebio/ergodicity/keymaps/default/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* Copyright 2019 Keebio | ||
| 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/keebio/ergodicity/keymaps/default/keymap.c b/keyboards/keebio/ergodicity/keymaps/default/keymap.c new file mode 100644 index 000000000..b33031ca5 --- /dev/null +++ b/keyboards/keebio/ergodicity/keymaps/default/keymap.c | |||
| @@ -0,0 +1,73 @@ | |||
| 1 | /* Copyright 2019 Keebio | ||
| 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 | // Defines the keycodes used by our macros in process_record_user | ||
| 19 | enum custom_keycodes { | ||
| 20 | QMKBEST = SAFE_RANGE, | ||
| 21 | QMKURL | ||
| 22 | }; | ||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | [0] = LAYOUT( | ||
| 26 | KC_ESC, KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, \ | ||
| 27 | KC_PGUP, 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, \ | ||
| 28 | KC_PGDN, 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, \ | ||
| 29 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1), \ | ||
| 30 | KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_SPC, KC_RALT, KC_RCTL \ | ||
| 31 | ), | ||
| 32 | [1] = LAYOUT( | ||
| 33 | _______, _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, \ | ||
| 34 | RGB_MOD, _______, _______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
| 35 | BL_STEP, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ | ||
| 37 | _______, _______, _______, _______, _______, _______, _______ \ | ||
| 38 | ), | ||
| 39 | }; | ||
| 40 | |||
| 41 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 42 | switch (keycode) { | ||
| 43 | case QMKBEST: | ||
| 44 | if (record->event.pressed) { | ||
| 45 | // when keycode QMKBEST is pressed | ||
| 46 | SEND_STRING("QMK is the best thing ever!"); | ||
| 47 | } else { | ||
| 48 | // when keycode QMKBEST is released | ||
| 49 | } | ||
| 50 | break; | ||
| 51 | case QMKURL: | ||
| 52 | if (record->event.pressed) { | ||
| 53 | // when keycode QMKURL is pressed | ||
| 54 | SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER)); | ||
| 55 | } else { | ||
| 56 | // when keycode QMKURL is released | ||
| 57 | } | ||
| 58 | break; | ||
| 59 | } | ||
| 60 | return true; | ||
| 61 | } | ||
| 62 | |||
| 63 | void matrix_init_user(void) { | ||
| 64 | |||
| 65 | } | ||
| 66 | |||
| 67 | void matrix_scan_user(void) { | ||
| 68 | |||
| 69 | } | ||
| 70 | |||
| 71 | void led_set_user(uint8_t usb_led) { | ||
| 72 | |||
| 73 | } | ||
diff --git a/keyboards/keebio/ergodicity/keymaps/default/readme.md b/keyboards/keebio/ergodicity/keymaps/default/readme.md new file mode 100644 index 000000000..906b26c64 --- /dev/null +++ b/keyboards/keebio/ergodicity/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for ergodicity | |||
diff --git a/keyboards/keebio/ergodicity/readme.md b/keyboards/keebio/ergodicity/readme.md new file mode 100644 index 000000000..0f841d6e3 --- /dev/null +++ b/keyboards/keebio/ergodicity/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Ergodicity | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A short description of the keyboard/project | ||
| 6 | |||
| 7 | Keyboard Maintainer: [nooges/bakingpy](https://github.com/nooges) | ||
| 8 | Hardware Supported: Ergodicity PCB w/ATmega32u4 | ||
| 9 | Hardware Availability: [Keebio](https://keeb.io) | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make keebio/ergodicity:default:dfu | ||
| 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/keebio/ergodicity/rules.mk b/keyboards/keebio/ergodicity/rules.mk new file mode 100644 index 000000000..974f75afd --- /dev/null +++ b/keyboards/keebio/ergodicity/rules.mk | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Processor frequency. | ||
| 5 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
| 6 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
| 7 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
| 8 | # automatically to create a 32-bit value in your source code. | ||
| 9 | # | ||
| 10 | # This will be an integer division of F_USB below, as it is sourced by | ||
| 11 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
| 12 | # does not *change* the processor frequency - it should merely be updated to | ||
| 13 | # reflect the processor speed set externally so that the code can use accurate | ||
| 14 | # software delays. | ||
| 15 | F_CPU = 16000000 | ||
| 16 | |||
| 17 | |||
| 18 | # | ||
| 19 | # LUFA specific | ||
| 20 | # | ||
| 21 | # Target architecture (see library "Board Types" documentation). | ||
| 22 | ARCH = AVR8 | ||
| 23 | |||
| 24 | # Input clock frequency. | ||
| 25 | # This will define a symbol, F_USB, in all source code files equal to the | ||
| 26 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
| 27 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
| 28 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
| 29 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
| 30 | # at the end, this will be done automatically to create a 32-bit value in your | ||
| 31 | # source code. | ||
| 32 | # | ||
| 33 | # If no clock division is performed on the input clock inside the AVR (via the | ||
| 34 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
| 35 | F_USB = $(F_CPU) | ||
| 36 | |||
| 37 | # Interrupt driven control endpoint task(+60) | ||
| 38 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
| 39 | |||
| 40 | |||
| 41 | # Bootloader selection | ||
| 42 | # Teensy halfkay | ||
| 43 | # Pro Micro caterina | ||
| 44 | # Atmel DFU atmel-dfu | ||
| 45 | # LUFA DFU lufa-dfu | ||
| 46 | # QMK DFU qmk-dfu | ||
| 47 | # atmega32a bootloadHID | ||
| 48 | BOOTLOADER = atmel-dfu | ||
| 49 | |||
| 50 | |||
| 51 | # If you don't know the bootloader type, then you can specify the | ||
| 52 | # Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line | ||
| 53 | # Teensy halfKay 512 | ||
| 54 | # Teensy++ halfKay 1024 | ||
| 55 | # Atmel DFU loader 4096 | ||
| 56 | # LUFA bootloader 4096 | ||
| 57 | # USBaspLoader 2048 | ||
| 58 | # OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
| 59 | |||
| 60 | |||
| 61 | # Build Options | ||
| 62 | # change yes to no to disable | ||
| 63 | # | ||
| 64 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | ||
| 65 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
| 66 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
| 67 | CONSOLE_ENABLE = yes # Console for debug(+400) | ||
| 68 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 69 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 70 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 71 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 72 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 73 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
| 74 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 75 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
| 76 | UNICODE_ENABLE = no # Unicode | ||
| 77 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 78 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 79 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 80 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) | ||
