1
0
Fork 0

break up keymaps and quantum keycodes into files by feature

This commit is contained in:
skullY 2017-08-06 17:51:42 -07:00 committed by Jack Humbert
parent 2709744cdd
commit 9b879b1267
12 changed files with 616 additions and 361 deletions

17
docs/feature_backlight.md Normal file
View file

@ -0,0 +1,17 @@
# Backlighting
<!-- FIXME: Describe how backlighting works in QMK -->
## Backlight Keycodes
These keycodes control the backlight. Most keyboards use this for single color in-switch lighting.
|Name|Description|
|----|-----------|
|`BL_x`|Set a specific backlight level between 0-9|
|`BL_ON`|An alias for `BL_9`|
|`BL_OFF`|An alias for `BL_0`|
|`BL_DEC`|Turn the backlight level down by 1|
|`BL_INC`|Turn the backlight level up by 1|
|`BL_TOGG`|Toggle the backlight on or off|
|`BL_STEP`|Step through backlight levels, wrapping around to 0 when you reach the top.|