You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
567 B

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