summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Vim Layout for Ergodox-EZ (mac only) (#2112)Benny Powers2017-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ignore libs * Clang complete file * Add VIM_A, VIM_S, VIM_COMMAND_SHIFT_D, and VIM_COMMAND_SHIFT_A Add VIM_A, VIM_S, VIM_COMMAND_SHIFT_D, and VIM_COMMAND_SHIFT_A a s O * Comment blocks for minimap generated at http://patorjk.com/software/taag/#p=display&h=0&v=0&c=c&f=Banner&t=COMMENT * Be explicit * More Comment blocks * Add J * add A, C, D, J, S, O * Make h j k l explicitly vim commands (useful for JOIN) * add cb ce cw ch cj ck cl db de dw dh dj dk dl vb ve vh vj vk vl x ciw diw viw * debug messages for ci di vi * Var capitalized * Save bytes by disabling mouse keys * Add Y P * Be more explicit about which key was pressed * Be more explicit about which key was sent * Move project to new directory structure * Remove non-vim layout folder * Replace KC_TRNS with KC_NO on normal layer * Insert Mode as default * Try to prevent crashes * Put normal mode back * Revert "ignore libs" This reverts commit 4c5d7592d6c1b70e689c0b9400afca19c71970a7. * add rules.mk * Add mouse bindings * Checkout most recent keymap following rebase * Realign mouse button keys * Make a macro for TO(NORMAL_MODE)
* actuation point adjustment for fc980c and fc660c (#2134)Balz Guenat2017-12-11
| | | | | | | | | | | | | | | | * add i2c lib submodule * add actuation point adjustment to fc980c * add actuation point adjustment to fc660c also. * use https for i2c submodule * move to existing i2c lib * properly remove old submodule * oops, forgot some files for the fc660c
* The ruler (#2138)That-Canadian2017-12-11
| | | | | | | | | | * Line ending stuff again * Added initital files and layout for the PCB Ruler keyboard/macro pad thing * Updated Readme * Changed make command to new format
* Add rasmus keymap and fix default keymap readmeRasmus Schults2017-12-10
|
* adds the gh80_3000 project (#2132)farmakon2017-12-10
|
* Add Lightsaver V3 keyboardRasmus Schults2017-12-10
|
* fixes audio/midi combinationsJack Humbert2017-12-10
|
* fixes midi compile errorJack Humbert2017-12-10
|
* update planck settingsJack Humbert2017-12-10
|
* fix up midi stuff w/music modeJack Humbert2017-12-10
|
* Don't "unselect" left-hand rowsSeebs2017-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | "unselecting" left-hand rows is a wasted i2c transaction. On the left-hand side, the ergodox uses a GPIO expander. It does *not* change "direction" (input/output) of pins, it just sets pins high or low. But all the pins are written at once. There's no way to change just one pin's value; you send a full byte of all eight row pins. (Not all of them are in use, but that doesn't matter.) So every pin is either +V or ground. This is in contrast with the right-hand side, which is using input mode to make pins be neutral. So there's no need to "deselect" the rows on the left side at all. To select row 0, you set the GPIO register for the rows to 0xFE. The previous code would then set it back to 0xFF, then set it to 0xFD on the next cycle. But we can just omit the intervening step, and set it to 0xFD next cycle, and get the same results. And yes, I tested that the keyboard still works. On my system, scan rate as reported by DEBUG_SCAN_RATE goes from 445 or so to 579 or so, thus, from ~2.24ms to ~1.73ms. Signed-off-by: seebs <seebs@seebs.net>
* change the ?= assignments to =Balz Guenat2017-12-10
|
* some planck keymap shiftings and include proper-makingBalz Guenat2017-12-10
|
* clean up bananasplit keymapBalz Guenat2017-12-10
|
* Trim trailing whitespacefauxpark2017-12-09
|
* Fix some of the more obvious typosfauxpark2017-12-09
|
* Format keycode tablesfauxpark2017-12-09
|
* Convert all headings to Title Casefauxpark2017-12-09
|
* New Planck Layout (#2123)Nico Hormazábal2017-12-09
| | | | | | | | | | | | | | * added own keymap for planck * Update Readme.md * Update Readme.md * Update Readme.md * Update Readme.md * Update Readme.md
* Turn on prevent stuck modifiers for my keymaps.Fredric Silberberg2017-12-09
|
* Updated copyright headers and peer review fixesCole Markham2017-12-09
|
* Update Meira readmeCole Markham2017-12-09
|
* Add support for MeiraCole Markham2017-12-09
|
* Add support for LFKeyboard products: LFK78, LFK87 and SMK65Scott Wilson2017-12-09
|
* fix link for grave escape in docsBalz Guenat2017-12-08
|
* Updated readmeMartin Gondermann2017-12-08
|
* Updated color for base layer to better match my key caps (Dasher)Martin Gondermann2017-12-08
|
* Pointing to the right build URLGaëtan Ark2017-12-08
| | | The previous URI used to point to the Nyquist keyboard build guide.
* Add 'rgblight_disable' and 'rgblight_setrgb_at/rgblight_sethsv_at'Colin T.A. Gray2017-12-08
| | | | | Refactors rgblight_toggle to use rgblight_enable or rgblight_disable Use 'rgblight_setrgb_at/rgblight_sethsv_at' to control an individual LED
* helper to compare current layer_state to user layerColin T.A. Gray2017-12-08
| | | | | Performs the same bit comparison that the layer_move functions perform
* Add a slightly modified ordinary layout for OSXCosmin Cojocar2017-12-08
|
* Enable tap dance and other features for Whitefoxandy2017-12-08
| | | | The custom matrix code was missing calls to matrix_*_quantum, disabling quantum features.
* add do60 supportUnknown2017-12-08
|
* move lcd_backlight_keyframes to correct locationJack Humbert2017-12-07
|
* Add support for 7x4 ortholinear split KB Ergo42Biacco422017-12-07
|
* F5 pin doesn't support PWM, so breathing isn't an optionColin T.A. Gray2017-12-07
|
* fixes case where BACKLIGHT_BREATHING is enabled, but pin doesn't support PWMColin T.A. Gray2017-12-07
|
* Updates to drashna keymaps and userspace (#2093)Drashna Jaelre2017-12-05
| | | | | | | | | | | | | | | | | | | | | | | | | | * Add "secret" macor * Updating secret macros * Re-add RGB to Ergodox * Fixed issue when RGB was disabled * Consistency changes * Updated bootloader macro * Fixing audio setup * Fix bootloader typo * Update to full list of stings (for completeness) * Template fix * Finally got woodpad to force numlock * Fix for new RGB mode
* Katana60 (#2068)Baris Tosun2017-12-05
| | | | | | | | | | | | | | | | | | | | | | | | * Add files via upload * katana60 defaults, initial pull-request * removed icons from google drive * added simple readme files * pull-request updates * readme file updated * readme file formatting * improvements before live * colemak readme * updated readme files * removed makefiles and updated readme
* Fix Audio chime overrides in split keyboardsDrashna Jael're2017-12-04
|
* adds led control functions to XD75 layoutColin T.A. Gray2017-12-04
|
* Add Crawlpad 2017 files.Cole Markham2017-12-04
|
* adds 'RGB_RMOD' to go through RGB modes in reverseColin T.A. Gray2017-12-04
|
* Fix typo in make exampleDrashna Jaelre2017-12-04
| | | It has `:all" when it clearly is referencing the command without `:all`.
* Magicforce68 now in bluetooth flavour (#2051)Harshit Goel2017-12-03
| | | | | | | | | | | | | | | | | | | | | | * Added working code for mf68_ble * update read.md * update read.md * update read.md * update readme * Update README.md * Update README.md * added reddit post * Update README.md * Update README.md
* update advanced_keycodes; oneshot = sticky/dead keysmmikeww2017-12-03
|
* update glossary; oneshot key = sticky/dead keymmikeww2017-12-03
|
* Flesh out the grave escape overridesskullY2017-12-03
|
* Remove unnecessary audio code from orthodox (#2076)Drashna Jaelre2017-12-02
| | | | | | | | * Remove unnecessary startup/shutdown code * Leave functions intact * Update rev1.c
* Add keymap for atreus and minidox (#2079)khitsule2017-12-02
| | | | | | * keymap for atreus and minidox * minidox keymap khitsule cleaned