diff options
author | Ryan <fauxpark@gmail.com> | 2021-02-17 02:51:28 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 10:51:28 -0500 |
commit | 53b96f685d3399e1281747b11a1194178089706c (patch) | |
tree | bac3e0e884e5778b2fbab893fab2d31e17ab5aaa /docs | |
parent | 02b5bb9b17f90d0b741b3b7128e61ac747ab4d6c (diff) | |
download | qmk_firmware-53b96f685d3399e1281747b11a1194178089706c.tar.gz qmk_firmware-53b96f685d3399e1281747b11a1194178089706c.zip |
RGBLight: Allow configurable default settings (#11912)
* RGBLight: Allow configurable default settings
* Docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_rgblight.md | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/docs/feature_rgblight.md b/docs/feature_rgblight.md index b5a2b179d..d2612a6d1 100644 --- a/docs/feature_rgblight.md +++ b/docs/feature_rgblight.md | |||
@@ -82,15 +82,20 @@ Changing the **Value** sets the overall brightness.<br> | |||
82 | 82 | ||
83 | Your RGB lighting can be configured by placing these `#define`s in your `config.h`: | 83 | Your RGB lighting can be configured by placing these `#define`s in your `config.h`: |
84 | 84 | ||
85 | |Define |Default |Description | | 85 | |Define |Default |Description | |
86 | |---------------------|-------------|-----------------------------------------------------------------------------| | 86 | |---------------------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------| |
87 | |`RGBLIGHT_HUE_STEP` |`10` |The number of steps to cycle through the hue by | | 87 | |`RGBLIGHT_HUE_STEP` |`10` |The number of steps to cycle through the hue by | |
88 | |`RGBLIGHT_SAT_STEP` |`17` |The number of steps to increment the saturation by | | 88 | |`RGBLIGHT_SAT_STEP` |`17` |The number of steps to increment the saturation by | |
89 | |`RGBLIGHT_VAL_STEP` |`17` |The number of steps to increment the brightness by | | 89 | |`RGBLIGHT_VAL_STEP` |`17` |The number of steps to increment the brightness by | |
90 | |`RGBLIGHT_LIMIT_VAL` |`255` |The maximum brightness level | | 90 | |`RGBLIGHT_LIMIT_VAL` |`255` |The maximum brightness level | |
91 | |`RGBLIGHT_SLEEP` |*Not defined*|If defined, the RGB lighting will be switched off when the host goes to sleep| | 91 | |`RGBLIGHT_SLEEP` |*Not defined* |If defined, the RGB lighting will be switched off when the host goes to sleep | |
92 | |`RGBLIGHT_SPLIT` |*Not defined*|If defined, synchronization functionality for split keyboards is added| | 92 | |`RGBLIGHT_SPLIT` |*Not defined* |If defined, synchronization functionality for split keyboards is added | |
93 | |`RGBLIGHT_DISABLE_KEYCODES`|*not defined*|If defined, disables the ability to control RGB Light from the keycodes. You must use code functions to control the feature| | 93 | |`RGBLIGHT_DISABLE_KEYCODES`|*Not defined* |If defined, disables the ability to control RGB Light from the keycodes. You must use code functions to control the feature| |
94 | |`RGBLIGHT_DEFAULT_MODE` |`RGBLIGHT_MODE_STATIC_LIGHT`|The default mode to use upon clearing the EEPROM | | ||
95 | |`RGBLIGHT_DEFAULT_HUE` |`0` (red) |The default hue to use upon clearing the EEPROM | | ||
96 | |`RGBLIGHT_DEFAULT_SAT` |`UINT8_MAX` (255) |The default saturation to use upon clearing the EEPROM | | ||
97 | |`RGBLIGHT_DEFAULT_VAL` |`RGBLIGHT_LIMIT_VAL` |The default value (brightness) to use upon clearing the EEPROM | | ||
98 | |`RGBLIGHT_DEFAULT_SPD` |`0` |The default speed to use upon clearing the EEPROM | | ||
94 | 99 | ||
95 | ## Effects and Animations | 100 | ## Effects and Animations |
96 | 101 | ||