aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards
Commit message (Collapse)AuthorAgeFilesLines
* - Added schematic for Trackpoint demonstrationdbroqua2017-05-262-0/+3
|
* - Added integration of IBM Trackpointdbroqua2017-05-267-0/+135
|
* Merge pull request #1316 from nikchi/masterJack Humbert2017-05-249-2/+551
|\ | | | | FrostyFlake Keymap
| * moved unicodemap rules to localer makeNick Choi2017-05-241-1/+0
| |
| * more emoji function commentsNick Choi2017-05-242-13/+38
| |
| * Tap dancing emoji support 😩😩Nick Choi2017-05-231-11/+64
| |
| * removed sNick Choi2017-05-231-2/+1
| |
| * Merge branch 'master' of https://github.com/nikchi/qmk_firmwareNick Choi2017-05-2312-18/+370
| |\
| | * Merge pull request #1 from qmk/masterNick Choi2017-05-2312-18/+370
| | |\ | | | | | | | | pull new to mine
| * | | preonic mapNick Choi2017-05-235-2/+255
| | | |
| * | | emojis and reorgNick Choi2017-05-151-28/+45
| |/ /
| * | emoji support butNick Choi2017-05-153-29/+77
| | |
| * | change readmeNick Choi2017-05-151-1/+1
| | |
| * | nikchi flakeNick Choi2017-05-154-0/+155
| | |
* | | tweaks default mouse speed constantsErez Zukerman2017-05-241-2/+2
| |/ |/|
* | Workaround for the macOS caps lock delay (#1308)jerryen2017-05-191-10/+0
| | | | | | | | | | | | | | | | | | | | * Add 80ms delay for KC_CAPS when used as a tap key Workaround for the macOS caps lock delay * Revert "Increase TAPPING_TERM for the Clueboard" This reverts commit a74e69e9fa889113ee31fbc8dc7e6848fdb07576.
* | m10a lowercaseJack Humbert2017-05-187-2/+2
| |
* | Merge pull request #1303 from cwesterlund/dvorak_dev_sweErez Zukerman2017-05-182-0/+359
|\ \ | | | | | | Created a dvorak keymap for Swedish developers using Visual Studio
| * | Created a dvorak keymap for Swedish developers using Visual StudioChristian Westerlund2017-05-162-0/+359
| |/
* | ESC/GRAVE/TILDE better handling (#1307)tengg2017-05-171-14/+7
| | | | | | | | | | | | * revise HHKB bootloader_size to 4096 such that sw reset works * cleanup esr/grave/tilde handling function
* | Increase TAPPING_TERM for the ClueboardskullY2017-05-161-0/+10
| |
* | Make KC_GRV accessibleskullY2017-05-162-2/+2
|/
* Merge pull request #1297 from khogeland/satan-colemakJack Humbert2017-05-123-0/+120
|\ | | | | Colemak layout for GH60 Satan
| * Colemak layout GH60 SatanKevin Hogeland2017-05-123-0/+120
| |
* | Fix spelling of "persistent"Nikolaus Wittenstein2017-05-1158-198/+198
|/ | | | Fixes #1201.
* Merge pull request #1283 from TerryMathews/masterJack Humbert2017-05-1111-0/+544
|\ | | | | Establish support for Bathroom Epiphanies Tiger Lily controller
| * Fix compile errorTerryMathews2017-05-071-0/+2
| |
| * Establish support for Bathroom Epiphanies Tiger Lily controllerTerryMathews2017-05-0711-0/+542
| | | | | | | | | | | | Replacement controller for Filco Majestouch 2 104 key keyboard. BE advises code will also work with the Black Petal controller - I don't have one to test with. Tests working perfectly on my Filco.
* | Add new features to dshields keymap.Daniel Shields2017-05-115-32/+55
| | | | | | | | | | - one shot layers, dynamic macros and tap dance keys - add a basic readme.md and layout image.
* | Add smt keymap for Clueboard (HHKB-style layout) (#1286)Stephen Tudor2017-05-083-0/+211
| | | | | | | | | | | | | | | | | | | | * Add keymap for smt Clueboard (HHKB layout) * Add readme for smt Clueboard (HHKB) keymap * Flesh out the keymap a bit more to support Colemak & Dvorak * Update README with layout image
* | Merge pull request #1279 from awpr/masterErez Zukerman2017-05-072-26/+38
|\ \ | | | | | | Change to per-key eager debouncing for ErgoDox EZ.
| * | Change to per-key eager debouncing for ErgoDox EZ.Andrew Pritchard2017-04-262-26/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #1278 from shieldsd/masterJack Humbert2017-05-073-0/+132
|\ \ \ | | | | | | | | Add new keymap for dshields.
| * | | Add new keymap for dshields.Daniel Shields2017-05-053-0/+132
| | | |
* | | | Merge pull request #1280 from tobsn/patch-1Jack Humbert2017-05-071-1/+1
|\ \ \ \ | | | | | | | | | | lowercase .jpg
| * | | | lowercase .jpg I thinkTobias O2017-05-051-1/+1
| |/ / / | | | | | | | | i guess that fixes the image link - currently its broken
* | | | Merge pull request #1282 from coderkun/coderkun_neo2Jack Humbert2017-05-072-38/+137
|\ \ \ \ | | | | | | | | | | Merge changes for coderkun’s Neo2 layout
| * | | | Update README for keymap “coderkun_neo2”coderkun2017-05-061-9/+2
| | | | |
| * | | | Merge tag '0.5.43' into coderkun_neo2coderkun2017-05-06220-962/+7703
| |\ \ \ \
| * | | | | Fix F-keys on right hand to start on first keycoderkun2017-05-061-1/+1
| | | | | |
| * | | | | Fix keymap “coderkun_neo” to use LALT instead of RALTcoderkun2017-04-011-6/+6
| | | | | |
| * | | | | Add several Unicode symbols to keymap “coderkun_neo2”coderkun2017-04-012-20/+20
| | | | | |
| * | | | | Add keymap diagrams to readme of keymap “coderkun_neo2”coderkun2017-04-011-9/+114
| | | | | |
| * | | | | Merge branch 'master' into coderkun_neo2coderkun2017-04-01448-2598/+26659
| |\ \ \ \ \
| * | | | | | Fix return value of hex_to_keycode() function in keymap “coderkun_neo2”coderkun2016-12-281-4/+5
| | | | | | |
* | | | | | | [Miuni32] Rm accidentally committed fileAdam Lee2017-05-071-42/+0
| | | | | | |
* | | | | | | Merge remote-tracking branch 'bigtunaio/layouts/adam-lee' into devAdam Lee2017-05-075-0/+191
|\ \ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'master' into layouts/adam-leeAdam YH Lee2017-04-1628-48/+41
| |\ \ \ \ \ \ \
| * | | | | | | | Add a personal layout for adamAdam YH Lee2017-04-165-0/+191
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Collectively we should keep on working on the "default" layout. I am adding my own layout to freely explore adjustments and new features.
* | | | | | | | | Merge remote-tracking branch 'upstream/master' into devAdam Lee2017-05-07117-406/+3670
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / | |/| | | | | | |