diff options
| author | QMK Bot | 2025-04-17 18:24:18 +0200 |
|---|---|---|
| committer | QMK Bot | 2025-04-17 18:24:18 +0200 |
| commit | 642c169bc3ec3690be20a81bbb023319959cf69f (patch) | |
| tree | 2333356784b51c5e73fae3e901234cfb28ac696c /docs/features/rgb_matrix.md | |
| parent | 944a206d1fd2d49d56fb134576b8605ac305e6ae (diff) | |
| parent | 76413592402ae2ede4d9deef0f7d91bf73026d33 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/features/rgb_matrix.md')
| -rw-r--r-- | docs/features/rgb_matrix.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/features/rgb_matrix.md b/docs/features/rgb_matrix.md index 0e53ce9c35..a22f931f1b 100644 --- a/docs/features/rgb_matrix.md +++ b/docs/features/rgb_matrix.md @@ -378,6 +378,10 @@ These are defined in [`color.h`](https://github.com/qmk/qmk_firmware/blob/master #define RGB_MATRIX_DEFAULT_SAT 255 // Sets the default saturation value, if none has been set #define RGB_MATRIX_DEFAULT_VAL RGB_MATRIX_MAXIMUM_BRIGHTNESS // Sets the default brightness value, if none has been set #define RGB_MATRIX_DEFAULT_SPD 127 // Sets the default animation speed, if none has been set +#define RGB_MATRIX_HUE_STEP 8 // The value by which to increment the hue per adjustment action +#define RGB_MATRIX_SAT_STEP 16 // The value by which to increment the saturation per adjustment action +#define RGB_MATRIX_VAL_STEP 16 // The value by which to increment the brightness per adjustment action +#define RGB_MATRIX_SPD_STEP 16 // The value by which to increment the animation speed per adjustment action #define RGB_MATRIX_DEFAULT_FLAGS LED_FLAG_ALL // Sets the default LED flags, if none has been set #define RGB_MATRIX_SPLIT { X, Y } // (Optional) For split keyboards, the number of LEDs connected on each half. X = left, Y = Right. // If reactive effects are enabled, you also will want to enable SPLIT_TRANSPORT_MIRROR |