From c5abf9ed0b4c7e3a637f78184f22b343ad515834 Mon Sep 17 00:00:00 2001 From: drashna Date: Tue, 1 Feb 2022 02:07:05 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20master=20@?= =?UTF-8?q?=20a2ef11bb006cfa0f185866f3f8d211131ca00af1=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- feature_rgb_matrix.md | 2 ++ feature_rgblight.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/feature_rgb_matrix.md b/feature_rgb_matrix.md index 676588b7505..3384aa71801 100644 --- a/feature_rgb_matrix.md +++ b/feature_rgb_matrix.md @@ -849,6 +849,8 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { } ``` +!> RGB indicators on split keyboards will require state information synced to the slave half (e.g. `#define SPLIT_LAYER_STATE_ENABLE`). See [data sync options](feature_split_keyboard.md#data-sync-options) for more details. + #### Indicators without RGB Matrix Effect If you want to just use RGB indicators without RGB matrix effect, it is not possible to disable the latter because toggling RGB off will disable everything. You can workaround it with solid effect and colors off using this init function: diff --git a/feature_rgblight.md b/feature_rgblight.md index e293b580d0e..7fafaff47e5 100644 --- a/feature_rgblight.md +++ b/feature_rgblight.md @@ -323,6 +323,8 @@ void post_process_record_user(uint16_t keycode, keyrecord_t *record) { ``` would turn the layer 0 (or 1) on and off again three times when `DEBUG` is pressed. +!> Lighting layers on split keyboards will require layer state synced to the slave half (e.g. `#define SPLIT_LAYER_STATE_ENABLE`). See [data sync options](feature_split_keyboard.md#data-sync-options) for more details. + ### Overriding RGB Lighting on/off status Normally lighting layers are not shown when RGB Lighting is disabled (e.g. with `RGB_TOG` keycode). If you would like lighting layers to work even when the RGB Lighting is otherwise off, add `#define RGBLIGHT_LAYERS_OVERRIDE_RGB_OFF` to your `config.h`.