summaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2017-10-31update hand wiring linkJack Humbert1-1/+1
2017-10-31RETRO_TAPPING (#1922)tsankuanglee1-0/+2
* add RETRO_TAP: tap anyway, even after TAP_TERM, if no interruption * consistent variable name * add option doc * change name for consistency * make RETRO_TAPPING default to off
2017-10-31fixed two typosZach Burchill1-2/+2
I'm almost 100% sure "else if (state->count = 2) {" was a typo (it should have two ='s for a logical operator), and I'm *pretty* sure "if (state->interrupted || state->!pressed) return SINGLE_TAP;" has a typo. At least, it returns an error on my machine saying something about an unexpected '!'. I changed it to a slightly longer form (i.e., "state->pressed==0"), and that worked fine.
2017-10-30Added missing RGB and Auto Shift in main feature list. Also standardized on ↵Jeremy Cowgar1-7/+9
period at the end of each feature list item.
2017-10-30Fix code example in auto shift docsJeremy Cowgar1-12/+10
2017-10-30Fixed various feature linksJeremy Cowgar2-5/+7
2017-10-29adds flashing docsJack Humbert2-0/+75
2017-10-25Restructure the hardware and feature docs to make things easier to find (#1888)skullydazed23-350/+530
* fix #1313 by documenting more config.h options * Clean up and organize documentation
2017-10-25Added a new keycode for cycling through RBG modes which reverses directions ↵Sebastian Kaim1-0/+1
when shift is hold. This commit adds a new keycode `RGB_SMOD` which is the same as `RGB_MOD` (cycle through all modes), but when it is used in combination with shift it will reverse the direction.
2017-10-22Update to Tap-Dance Docs for Fast TypistsDaniel Gordon1-8/+23
* Quad function tap dance works as intended when typing fast * Example 4 in doc has been updated Change-Id: If33406299e2eed49152c495da92f4977dfdc1e2f
2017-10-21Creates a userspace for keymaps (#1559)Jack Humbert2-0/+34
* create a user space * adds example * document, add readme.md * jackhumbert userspace, ergodox keymap
2017-10-21Fix the naming for clueboard filesskullY1-1/+1
2017-10-21Minor punctuation and grammar edits.James1-3/+3
2017-10-21Fix code backticks on Frequently Asked Build Questions docsJason Milkins1-1/+1
2017-10-21Fix missing code backticksJason Milkins1-2/+2
2017-10-19Quad Function Tap Dance added to TD DocDaniel Gordon1-5/+90
* Added section to example, detailing how to accomplish the 'quad-function' tap dance. * Refactored TD documentation to clearly separate different complex examples Change-Id: Ifc1495d1142849c771418fdabc458c04c48311e6
2017-10-18Address #1689 by using a formula to define the breathing curve (#1692)skullydazed1-2/+4
* Address #1689 by using a formula to define the breathing curve and exposing defines to control the shape of the curve. * Tweak the behavior of breathing for clueboard
2017-10-16Broken link found in issue #1845Dylan Khor1-1/+1
2017-10-14Make arguments redo, subproject elimination (#1784)Jack Humbert11-46/+40
* redo make args to use colons, better folder structuring system [skip ci] * don't put spaces after statements - hard lessons in makefile development * fix-up some other rules.mk * give travis a chance * reset KEYMAPS variable * start converting keyboards to new system * try making all with travis * redo make args to use colons, better folder structuring system [skip ci] * don't put spaces after statements - hard lessons in makefile development * fix-up some other rules.mk * give travis a chance * reset KEYMAPS variable * start converting keyboards to new system * try making all with travis * start to update readmes and keyboards * look in keyboard directories for board.mk * update visualizer rules * fix up some other keyboards/keymaps * fix arm board ld includes * fix board rules * fix up remaining keyboards * reset layout variable * reset keyboard_layouts * fix remainging keymaps/boards * update readmes, docs * add note to makefile error * update readmes * remove planck keymap warnings * update references and docs * test out tarvis build stages * don't use stages for now * don't use stages for now
2017-10-12Remove reference to Ergodox subprojects from docsJonathan Arnett1-1/+1
At one time, "ez" and "infinity" may have been subprojects of a unified "ergodox" project, but this is not currently the case. Running `make ergodox-ez-default-teensy` (or similar), as the documentation currently implies, does not work.
2017-10-11Fix the presentation of the contribution guideskullY2-1/+1
2017-10-11Write a contributing guide. (#1827)skullydazed4-17/+191
2017-10-10Add option to reverse PS2 mouse axes and scrollingJesper Brix Rosenkilde1-0/+20
2017-10-10Added Dichotemy Keyboard, updated docs for Pointing Device (#1817)Snipeye1-0/+1
* Added Dichotemy Keyboard, updated docs for Pointing Device * Updated readme * Updated mouse report pointer in pointing_device.c
2017-10-07Fixed typo in docs. (#1818)lyuts1-1/+1
2017-10-06Generic Pointing Device (#1767)Snipeye2-1/+48
2017-10-05Minor typoDylan Khor1-1/+1
2017-10-05Edited a minor typo in feature_bootmagic.md.Sebastian Kaim1-1/+1
2017-10-03Reference to rules.mk in tap dance docs addedDaniel Gordon1-2/+2
Change-Id: I64aa6f95a30ab05f0ed3f499e54b9e125d379fad
2017-09-30Fix HSV Color Wheel image on RGB Light page (#1773)Max Riveiro1-4/+4
Signed-off-by: Max Riveiro <kavu13@gmail.com>
2017-09-25Add shell.nix for NixOS usersLukas Werling1-1/+9
2017-09-25Fixed typo of "multually" to "mutually"Zach Burchill1-1/+1
2017-09-25platform descriptions to match master keycodes.md documentationsurlyjake1-6/+6
2017-09-25updated keycodes media descriptionssurlyjake1-6/+6
Platform compatibility descriptions added for mute, volume up/down
2017-09-18Fixed a few typos and spelling errors in auto shift feature documentJeremy Cowgar1-17/+16
2017-09-18Added Auto Shift, tap key = normal, hold key = shifted state.Jeremy Cowgar2-0/+162
2017-09-12Updates send_string functionality, adds terminal feature (#1657)Jack Humbert3-41/+176
* implement basic terminal stuff * modify send_string to read normal strings too * add files bc yeah. working pgm detected * pgm detection apparently not working * adds send string keycodes, additional keycode support in send string * implement arguments * [terminal] add help command * [terminal] adds keycode and keymap functions * [terminal] adds nop.h, documentation * update macro docs
2017-09-08Remove all Makefiles from the keyboards directory. (#1660)skullydazed2-41/+11
* Remove all Makefiles from the keyboards directory. * update keymaps added in the last 8 days * Ignore keyboard/keymap makefiles * update hand_wire to reflect our new Makefile-less reality * Update the make guide to reflect the new reality * move planck keymap options to rules.mk * update planck keymaps 4real * trigger travis * add back build_keyboard.mk * restore changes to build_keyboard
2017-09-06RGB improvements (#1684)skullydazed2-29/+542
* Allow the knight animation to be restricted to a portion of the LED strip * Add keys for jumping directly to particular animation modes * Remove orphaned break statements * Tweak the `RGB_MODE` buttons so they cycle through the same mode. * small indentation fix
2017-09-06Update mac guide (#1665)Will Jiang1-1/+4
`avr-libc` is no longer, and it's called `avr-gcc` now. https://github.com/osx-cross/homebrew-avr Also you need `gcc-arc-none-eabi` to be able to compile in my experience.
2017-09-05Update feature_common_shortcuts.mdJack Humbert1-1/+1
2017-08-30add UC_OSX_RALT to make unicode use the Right Alt key on OSXMarco Fontani1-0/+1
2017-08-24Creates a layouts/ folder for keymaps shared between keyboards (#1609)Jack Humbert2-0/+78
* 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
2017-08-20Add compile error if too many endpoints are defined for the ATmega32U4.Joe Wasson1-1/+1
2017-08-19validates jsonJack Humbert1-1/+1
2017-08-19adds redirects for docsJack Humbert1-0/+12
2017-08-18Fix incorrect name for GeminiPR in docs.Joe Wasson1-10/+10
2017-08-18adds audio docs to summaryJack Humbert1-0/+1
2017-08-18Add link to keycodes doc in how_keyboards_workBenny Powers1-1/+1
2017-08-18Fix these links, as they appear to be broken (#1595)Roy Wellington Ⅳ2-2/+2
It looks like build_environment_setup.md got renamed to getting_started_build_tools.md in this commit: commit e6c638bed1fa0a48bb6f8697b2a61717c4fd0992 Author: skullY <skullydazed@gmail.com> Date: Sat Aug 5 20:54:34 2017 -0700 Overhaul the Getting Started section and add a FAQ section docs/{build_environment_setup.md => getting_started_build_tools.md} | 132 ++++++++++++++++++++++++++++++++++++------------------------------------- This commit adjusts the links to match the new name.