diff options
| author | skullY <skullydazed@gmail.com> | 2017-08-06 17:51:42 -0700 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2017-08-16 15:47:20 -0400 |
| commit | 9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4 (patch) | |
| tree | e47cc787fcb7745d83d6e645b21c00e498b55100 /docs/feature_backlight.md | |
| parent | 2709744cdda808121ae91e8467659f715e68a540 (diff) | |
| download | qmk_firmware-9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4.tar.gz qmk_firmware-9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4.zip | |
break up keymaps and quantum keycodes into files by feature
Diffstat (limited to 'docs/feature_backlight.md')
| -rw-r--r-- | docs/feature_backlight.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/feature_backlight.md b/docs/feature_backlight.md new file mode 100644 index 000000000..c419b7ccc --- /dev/null +++ b/docs/feature_backlight.md | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | # Backlighting | ||
| 2 | |||
| 3 | <!-- FIXME: Describe how backlighting works in QMK --> | ||
| 4 | |||
| 5 | ## Backlight Keycodes | ||
| 6 | |||
| 7 | These keycodes control the backlight. Most keyboards use this for single color in-switch lighting. | ||
| 8 | |||
| 9 | |Name|Description| | ||
| 10 | |----|-----------| | ||
| 11 | |`BL_x`|Set a specific backlight level between 0-9| | ||
| 12 | |`BL_ON`|An alias for `BL_9`| | ||
| 13 | |`BL_OFF`|An alias for `BL_0`| | ||
| 14 | |`BL_DEC`|Turn the backlight level down by 1| | ||
| 15 | |`BL_INC`|Turn the backlight level up by 1| | ||
| 16 | |`BL_TOGG`|Toggle the backlight on or off| | ||
| 17 | |`BL_STEP`|Step through backlight levels, wrapping around to 0 when you reach the top.| | ||
