summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1168 from newsboytko/newsboytko/frosty-flakeJack Humbert2017-03-2811-0/+542
|\ | | | | Support Frosty Flake Controller (CM Storm QFR)
| * clean up configGabriel Young2017-03-191-26/+4
| |
| * clean up docs and provide defaults for keymapGabriel Young2017-03-194-40/+21
| |
| * update docsGabriel Young2017-03-191-0/+4
| |
| * fix whitespaceGabriel Young2017-03-191-51/+48
| |
| * support LEDsGabriel Young2017-03-192-44/+51
| |
| * Swap rows and columns to match the schematicGabriel Young2017-03-194-142/+62
| |
| * start to define keymap; annoying because rows and columns are swapped from ↵Gabriel Young2017-03-193-5/+84
| | | | | | | | schematic
| * successfully read data from the matrixGabriel Young2017-03-194-75/+93
| |
| * sketch out frosty flake matrix using custom matrix.c based on kitten pawGabriel Young2017-03-183-11/+187
| |
| * boilerplate project created with new_project.shGabriel Young2017-03-1810-0/+382
| |
| * Merge branch 'qmk/master'Gabriel Young2017-03-18145-603/+7799
| |\
| * \ Merge branch 'qmk/master'Gabriel Young2017-02-219-74/+60
| |\ \
| * \ \ Merge branch 'qmk/master'Gabriel Young2017-02-1949-1536/+1470
| |\ \ \
* | \ \ \ Merge pull request #1178 from cheesemacfly/masterJack Humbert2017-03-284-0/+80
|\ \ \ \ \ | | | | | | | | | | | | XD60 different layout
| * | | | | Create README.mdNicolas Guelpa2017-03-261-0/+13
| | | | | |
| * | | | | Add files via uploadNicolas Guelpa2017-03-262-0/+0
| | | | | |
| * | | | | fixing layoutNicolas Guelpa2017-03-261-1/+1
| | | | | |
| * | | | | Adding different layerNicolas Guelpa2017-03-241-0/+67
| | | | | |
* | | | | | Merge pull request #1163 from jprMesh/atreus62_KC_KEYMAPJack Humbert2017-03-281-11/+27
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added KC_KEYMAP macro for old style keymaps in Atreus62
| * | | | | | Added KC_KEYMAP macro for old style keymaps in Atreus62jprmesh2017-03-171-11/+27
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #1177 from exiva/bluetooth_refactorJack Humbert2017-03-288-63/+58
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Refactor Bluetooth Handling
| * | | | | Add BLE and EZKey module defines.Travis La Marr2017-03-242-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | Also restored serial init back to original location. Was getting junk data.
| * | | | | Readd bluetooth output direction on standard key input.Travis La Marr2017-03-241-8/+10
| | | | | |
| * | | | | Refactor Bluetooth HandlingTravis La Marr2017-03-248-66/+57
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored Bluetooth support to make adding new Bluetooth modules easier in the future. * Remove `OUT_BLE` key from QMK's keymap. `OUT_BT` is all we need now as there's no difference anymore. * Made BLUETOOTH_ENABLE build option legacy as not to break existing keymaps (Falls back to existing EZ Key support if on) * Removed `ADAFRUIT_BLE_ENABLE` build option * Created new build option `BLUETOOTH` with module option (Currently `AdafruitEZKey` & `AdafruitBLE`) * Moved all LUFA bluetooth key/mouse events under `BLUETOOTH_ENABLE` ifdef with selected modules output.
* | | | | Fix a typoskullY2017-03-211-1/+1
| | | | |
* | | | | Add #1170 to all the clueboard keymapsskullY2017-03-219-10/+34
| | | | |
* | | | | Merge pull request #1170 from tengg/masterskullydazed2017-03-211-1/+4
|\ \ \ \ \ | |/ / / / |/| | | | fixed a bug related to mod + Grave with combined ESC/Grave key
| * | | | typo fixedtengg2017-03-221-2/+2
| | | | |
| * | | | fix typotengg2017-03-221-1/+1
| | | | |
| * | | | fixed a bug related to mod + Grave with combined ESC/Grave keytengg2017-03-221-1/+4
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This only applies to keymaps that has combined esc/grave. Here we call it theKEY. Think about the motion when we do shift + theKEY (typing ~), or CMD + theKEY (switching window on MAC). Based on the original code, we must do following sequence: press shift -> press theKEY -> release theKEY -> release shift. However, it is very possible and natural that we do this stroke sequence instead: press shift -> press theKEY -> release shift -> release theKEY. If we do the 2nd stroke sequence, the code will del_key(ESC) instead of (GRV) when we release theKEY. This caused some inconvenient issues and ghost typing. By adding a flag, this issue is eliminated and will not affect any other functions.
* | | | Update config.hJack Humbert2017-03-151-0/+1
| | | |
* | | | Update config.hJack Humbert2017-03-151-1/+4
| | | |
* | | | Merge pull request #1152 from UnintendedFeature/bugfix/issue1151Jack Humbert2017-03-151-1/+1
|\ \ \ \ | | | | | | | | | | readme keymap.h to quantum_keycodes.h
| * | | | readme keymap.h to quantum_keycodes.hLukas Stiebig2017-03-091-1/+1
| | | | | | | | | | | | | | | | | | | | Changed the quantum/keymap.h to quantum/quantum_keycodes.h because this seems to be the file where they keycodes are defined.
* | | | | Merge pull request #1090 from qmk/backlight_softpwmJack Humbert2017-03-154-18/+50
|\ \ \ \ \ | | | | | | | | | | | | Adds soft PWM backlight for non-timed ports
| * | | | | helps to save before committingJack Humbert2017-02-191-3/+1
| | | | | |
| * | | | | mergingJack Humbert2017-02-1959-1598/+1913
| |\ \ \ \ \ | | | |_|/ / | | |/| | |
| * | | | | adds soft pwm for non-timed portsJack Humbert2017-02-124-18/+50
| | | | | |
* | | | | | Merge pull request #1146 from khogeland/masterJack Humbert2017-03-151-0/+83
|\ \ \ \ \ \ | | | | | | | | | | | | | | Colemak layout for Clueboard
| * | | | | | Colemak layout for ClueboardKevin Hogeland2017-03-091-0/+83
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #1147 from nooges/numpad20Jack Humbert2017-03-156-0/+292
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add handwired 20-key Numpad
| * | | | | | Initial commit for handwired numpadDanny Nguyen2017-03-096-0/+292
| |/ / / / /
* | | | | | Merge pull request #1150 from nooges/ortho5x13Jack Humbert2017-03-156-0/+581
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add handwired 5x13 ortholinear keyboard
| * | | | | | Add handwired 5x13 ortholinear keyboardDanny Nguyen2017-03-096-0/+581
| |/ / / / /
* | | | | | Merge pull request #1148 from nooges/hexwire-lets-splitJack Humbert2017-03-155-0/+372
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add Hexwire layout for Let's Split
| * | | | | | Add RGB underglow, move keys to allow Adjust layer to be reachedDanny Nguyen2017-03-144-8/+15
| | | | | | |
| * | | | | | Add readme for layoutDanny Nguyen2017-03-091-0/+108
| | | | | | |
| * | | | | | Convert keymap to compact versionDanny Nguyen2017-03-092-109/+107
| | | | | | |
| * | | | | | Add hexwire layout for Let’s SplitDanny Nguyen2017-03-092-0/+259
| |/ / / / /