summaryrefslogtreecommitdiff
path: root/keyboards/ergodox/ez
Commit message (Collapse)AuthorAge
* Creates a layouts/ folder for keymaps shared between keyboards (#1609)Jack Humbert2017-08-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * include variables and .h files as pp directives * start layout compilation * split ergodoxes up * don't compile all layouts for everything * might seg fault * reset layouts variable * actually reset layouts * include rules.mk instead * remove includes from rules.mk * update variable setting * load visualizer from path * adds some more examples * adds more layouts * more boards added * more boards added * adds documentation for layouts * use lowercase names for LAYOUT_ * add layout.json files for each layout * add community folder, default keymaps for layouts * touch-up default layouts * touch-up layouts, some keyboard rules.mk * update documentation for layouts * fix up serial/i2c switches
* Line ending stuff againThat-Canadian2017-08-20
|
* Add dvorak/colemak layersDrashna Jael're2017-08-17
|
* Revert "Moves files from ez/keymaps to ergodox/keymaps"Erez Zukerman2017-08-16
| | | | This reverts commit 5e36f8463adf9231a60bc8d1c657d51c3181d079.
* Moves files from ez/keymaps to ergodox/keymapsErez Zukerman2017-08-16
| | | | That directory shouldn't even exist
* line endingsskullY2017-08-16
|
* Add files via uploaddrashna2017-08-14
|
* Fixed so will compile both with and without underglowdrashna2017-08-14
|
* Add files via uploaddrashna2017-08-14
|
* Create Keymap.cdrashna2017-08-14
| | | RGB Underglow mod for layer indication
* Update keyboards' rules.mk/Makefiles (#1442)Jack Humbert2017-06-30
| | | this may change some of the keyboards' default settings - if you experience anything odd, please check back to this commit
* Add keymaps for ergodox ez, hhkb and jd45 under user blakedietzBlake Dietz2017-06-24
|
* Merge pull request #1331 from ariasuni/masterErez Zukerman2017-06-22
|\ | | | | Fix undefined reference errors with avr-gcc 7.1
| * Fix undefined reference errors with avr-gcc 7.1ariasuni2017-05-27
| |
* | remove the rest of the .pngsJack Humbert2017-06-11
| |
* | Adds prevent stuck modifiers to EZ defaultErez Zukerman2017-05-28
|/
* Change to per-key eager debouncing for ErgoDox EZ.Andrew Pritchard2017-04-26
| | | | | | | | | | | | | | | | | | | | | | | Empirically, waiting for N consecutive identical scans as a debouncing strategy doesn't work very well for the ErgoDox EZ where scans are very slow compared to most keyboards. Instead, debounce the signals by eagerly reporting a change as soon as one scan observes it, but then ignoring further changes from that key for the next N scans. This is implemented by keeping an extra matrix of uint8 countdowns, such that only keys whose countdown is currently zero are eligible to change. When we do observe a change, we bump that key's countdown to DEBOUNCE. During each scan, every nonzero countdown is decremented. With this approach to debouncing, much higher debounce constants are tolerable, because latency does not increase with the constant, and debounce countdowns on one key do not interfere with events on other keys. The only negative effect of increasing the constant is that the minimum duration of a keypress increases. Perhaps I'm just extremely unlucky w.r.t. key switch quality, but I saw occasional bounces even with DEBOUNCE=10; with 15, I've seen none so far. That's around 47ms, which seems like an absolutely insane amount of time for a key to be bouncy, but at least it works.
* Remove unneeded makefile includeFred Sundvik2017-04-09
|
* disables space cadet rolloverErez Zukerman2017-04-03
|
* turn off rgb_midi in ezJack Humbert2017-01-23
|
* Update config.hJack Humbert2017-01-02
|
* Merge branch 'master' of github.com:jackhumbert/qmk_firmwareJack Humbert2016-12-19
|\
| * Flips off MIDI and API_SYSEXErez Zukerman2016-12-19
| |
| * Allow power consumption to be set per-keyboard.Kyle Smith2016-12-14
| |
* | rgb clean-up, api clean-upJack Humbert2016-12-19
|/
* guess i didnt pullJack Humbert2016-11-29
|
* Merge branch 'wu5y7' of github.com:jackhumbert/qmk_firmware into wu5y7Jack Humbert2016-11-29
|\
| * Tweaks EZ MakefileErez Zukerman2016-11-28
| |
| * Pulls LED config into common config for EZErez Zukerman2016-11-28
| |
* | enable rgblight by default for ezJack Humbert2016-11-29
| |
* | enable api sysex for ezJack Humbert2016-11-29
|/
* fix infinityJack Humbert2016-11-21
|
* mostly workingJack Humbert2016-11-13
|
* Update ez.cRob Rogers2016-10-18
|
* Move hand_swap_config to ez.c, removes error for infinityRob Rogers2016-10-17
|
* Disables sleep LED by defaultErez Zukerman2016-09-23
|
* Changing keymap name to "profet_80"profet232016-09-08
|
* Removing separate ergodox80 project.profet232016-09-06
| | | | | Created KEYMAP_80 in ez.h to support 80 key ergodoxes. Creating default_80 keymap as ez keymap.
* Merge remote-tracking branch 'upstream/master' into makefile_overhaulFred Sundvik2016-08-24
|\
| * move to ergodox-ez onlyJason Green2016-08-23
| |
* | Split subproject make files into Makefile and rules.mkFred Sundvik2016-08-20
|/
* Move Ergodox readme from ez subfolder to parentFred Sundvik2016-07-29
|
* Fix config.h include guardsFred Sundvik2016-07-29
|
* Move some of the Ergodox config settings to sharedFred Sundvik2016-07-29
|
* Initial structure for Ergodox as subprojectsFred Sundvik2016-07-29
Only the EZ default keymaps compiles at the moment though.