aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-03-28Merge pull request #1171 from ishtob/masterGravatar Jack Humbert
SSD1306 I2C OLED display support for let's split
2017-03-28Merge pull request #1168 from newsboytko/newsboytko/frosty-flakeGravatar Jack Humbert
Support Frosty Flake Controller (CM Storm QFR)
2017-03-28Merge pull request #1178 from cheesemacfly/masterGravatar Jack Humbert
XD60 different layout
2017-03-28Merge pull request #1163 from jprMesh/atreus62_KC_KEYMAPGravatar Jack Humbert
Added KC_KEYMAP macro for old style keymaps in Atreus62
2017-03-28Merge pull request #1177 from exiva/bluetooth_refactorGravatar Jack Humbert
Refactor Bluetooth Handling
2017-03-28Removed images from ergodox ez italian layoutGravatar mattdibi
2017-03-28Fixed layout title in ergodox ez italian keymapGravatar mattdibi
2017-03-28Fixed italian kymap readmeGravatar mattdibi
2017-03-28Updated readmeGravatar mattdibi
2017-03-28Added italian layoutGravatar mattdibi
2017-03-26Create README.mdGravatar Nicolas Guelpa
2017-03-26Add files via uploadGravatar Nicolas Guelpa
2017-03-26fixing layoutGravatar Nicolas Guelpa
2017-03-24Adding different layerGravatar Nicolas Guelpa
2017-03-24Add BLE and EZKey module defines.Gravatar Travis La Marr
Also restored serial init back to original location. Was getting junk data.
2017-03-24Readd bluetooth output direction on standard key input.Gravatar Travis La Marr
2017-03-24Swapped placement of `Ctrl` and `Alt` keys to match Technomancy'sGravatar Hugh Enxing
default layout
2017-03-24Refactor Bluetooth HandlingGravatar Travis La Marr
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.
2017-03-23Add RGB supportGravatar Danny Nguyen
2017-03-23Add RGB support for Let’s Split v1Gravatar Danny Nguyen
2017-03-23Cleanup keymapGravatar Danny Nguyen
2017-03-23Initial commit for Atreus50 with working audioGravatar Danny Nguyen
2017-03-23Move keymap into config fileGravatar Danny Nguyen
2017-03-23Add Makefile in keymap dirGravatar Danny Nguyen
2017-03-23Remove line for hands selection via EEPROM, reduce tap duration from 200ms ↵Gravatar Danny Nguyen
to 150ms
2017-03-22Update readme.mdGravatar ishtob
2017-03-22Update i2c.cGravatar ishtob
2017-03-22Update i2c.cGravatar ishtob
2017-03-22Update i2c.cGravatar ishtob
2017-03-22Update i2c.cGravatar ishtob
2017-03-22Update matrix.cGravatar ishtob
2017-03-22Update split_util.cGravatar ishtob
2017-03-22Update matrix.cGravatar ishtob
2017-03-22OLED code cleanupGravatar ishtob
2017-03-22Add files via uploadGravatar ishtob
2017-03-22OLED code cleanupGravatar ishtob
2017-03-22Added OLED SSD1306 support to I2CGravatar ishtob
2017-03-22Merged Fliphalf, now defined in config, added OLEDGravatar ishtob
Can now use the following in the keymap config.h to call the flipped matrix ``` #define FLIPHALF ```
2017-03-22Delete rules.mkGravatar ishtob
2017-03-22Delete rev2fliphalf.hGravatar ishtob
2017-03-22Delete rev2fliphalf.cGravatar ishtob
2017-03-22Delete config.hGravatar ishtob
2017-03-22Delete MakefileGravatar ishtob
2017-03-22Add files via uploadGravatar ishtob
2017-03-21Fix a typoGravatar skullY
2017-03-21Add #1170 to all the clueboard keymapsGravatar skullY
2017-03-21Merge pull request #1170 from tengg/masterGravatar skullydazed
fixed a bug related to mod + Grave with combined ESC/Grave key
2017-03-22typo fixedGravatar tengg
2017-03-22fix typoGravatar tengg
2017-03-22fixed a bug related to mod + Grave with combined ESC/Grave keyGravatar tengg
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.