diff options
author | Joshua Diamond <josh@windowoffire.com> | 2020-05-09 04:38:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 01:38:33 -0700 |
commit | e0f548085cc9c29e85122d393e74143eb5de1d4d (patch) | |
tree | 0a881564362e8966376611da7b0db6e5bd6e597d /docs/config_options.md | |
parent | 94fc32f43135ac4afb14849c7fb5e99f95455078 (diff) | |
download | qmk_firmware-e0f548085cc9c29e85122d393e74143eb5de1d4d.tar.gz |
Add ability to blink lighting layer for a specified duration (#8760)
* Implement momentarily blink of lighting layers
* Refactor spidey3 userspace to use rgb layer blink
* Remove un-necessary line from example in documentation
* Revert "Refactor spidey3 userspace to use rgb layer blink"
This reverts commit 831649bb680c41c6d663ae6fa86d13f4f8bebdd8.
* Adds a missing bit of documentation about lighting layer blink
* Update docs/feature_rgblight.md per suggestions
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update docs/feature_rgblight.md per suggestions
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update docs/feature_rgblight.md per suggestions
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* cformat, as suggested
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'docs/config_options.md')
-rw-r--r-- | docs/config_options.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/config_options.md b/docs/config_options.md index 16fea83a3..f76685702 100644 --- a/docs/config_options.md +++ b/docs/config_options.md @@ -191,7 +191,9 @@ If you define these options you will enable the associated feature, which may in * `#define RGBLIGHT_ANIMATIONS` * run RGB animations * `#define RGBLIGHT_LAYERS` - * Lets you define [lighting layers](feature_rgblight.md) that can be toggled on or off. Great for showing the current keyboard layer or caps lock state. + * Lets you define [lighting layers](feature_rgblight.md?id=lighting-layers) that can be toggled on or off. Great for showing the current keyboard layer or caps lock state. +* `#define RGBLIGHT_LAYER_BLINK` + * Adds ability to [blink](feature_rgblight.md?id=lighting-layer-blink) a lighting layer for a specified number of milliseconds (e.g. to acknowledge an action). * `#define RGBLED_NUM 12` * number of LEDs * `#define RGBLIGHT_SPLIT` |