diff options
author | fauxpark <fauxpark@gmail.com> | 2017-12-09 16:45:13 +1100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-12-09 10:46:11 -0500 |
commit | 4c675a83ba1d3561bfd6baad57a250066f5db4d3 (patch) | |
tree | c17e42238c29d0ebf9a3f55b2b13a0ac5f3dbae0 /docs/feature_backlight.md | |
parent | 7b0356d1d49da6574570e110f61f95692afdb3d0 (diff) | |
download | qmk_firmware-4c675a83ba1d3561bfd6baad57a250066f5db4d3.tar.gz qmk_firmware-4c675a83ba1d3561bfd6baad57a250066f5db4d3.zip |
Format keycode tables
Diffstat (limited to 'docs/feature_backlight.md')
-rw-r--r-- | docs/feature_backlight.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/feature_backlight.md b/docs/feature_backlight.md index c419b7ccc..aa747f90e 100644 --- a/docs/feature_backlight.md +++ b/docs/feature_backlight.md | |||
@@ -6,12 +6,12 @@ | |||
6 | 6 | ||
7 | These keycodes control the backlight. Most keyboards use this for single color in-switch lighting. | 7 | These keycodes control the backlight. Most keyboards use this for single color in-switch lighting. |
8 | 8 | ||
9 | |Name|Description| | 9 | |Key |Description | |
10 | |----|-----------| | 10 | |---------|------------------------------------------| |
11 | |`BL_x`|Set a specific backlight level between 0-9| | 11 | |`BL_TOGG`|Turn the backlight on or off | |
12 | |`BL_ON`|An alias for `BL_9`| | 12 | |`BL_STEP`|Cycle through backlight levels | |
13 | |`BL_OFF`|An alias for `BL_0`| | 13 | |`BL_x` |Set a specific backlight level between 0-9| |
14 | |`BL_DEC`|Turn the backlight level down by 1| | 14 | |`BL_ON` |An alias for `BL_9` | |
15 | |`BL_INC`|Turn the backlight level up by 1| | 15 | |`BL_OFF` |An alias for `BL_0` | |
16 | |`BL_TOGG`|Toggle the backlight on or off| | 16 | |`BL_INC` |Increase backlight level | |
17 | |`BL_STEP`|Step through backlight levels, wrapping around to 0 when you reach the top.| | 17 | |`BL_DEC` |Decrease backlight level | |