diff options
| author | Ryan <fauxpark@gmail.com> | 2021-06-28 15:15:24 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-28 15:15:24 +1000 |
| commit | cb23fe9fc1fa6e2219380228ae589f3d733ea4e6 (patch) | |
| tree | 8383c0cbf24389a4bfad04880f13d1a7e0098366 /docs | |
| parent | 5a5015594f44f8b7f7d3c5bc43479c3e670656d6 (diff) | |
| download | qmk_firmware-cb23fe9fc1fa6e2219380228ae589f3d733ea4e6.tar.gz qmk_firmware-cb23fe9fc1fa6e2219380228ae589f3d733ea4e6.zip | |
Move RGBLight code into its own folder (#13312)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/cli_commands.md | 2 | ||||
| -rw-r--r-- | docs/feature_rgblight.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/cli_commands.md b/docs/cli_commands.md index 581342093..e30593daa 100644 --- a/docs/cli_commands.md +++ b/docs/cli_commands.md | |||
| @@ -368,7 +368,7 @@ qmk generate-docs | |||
| 368 | 368 | ||
| 369 | ## `qmk generate-rgb-breathe-table` | 369 | ## `qmk generate-rgb-breathe-table` |
| 370 | 370 | ||
| 371 | This command generates a lookup table (LUT) header file for the [RGB Lighting](feature_rgblight.md) feature's breathing animation. Place this file in your keyboard or keymap directory as `rgblight_breathe_table.h` to override the default LUT in `quantum/`. | 371 | This command generates a lookup table (LUT) header file for the [RGB Lighting](feature_rgblight.md) feature's breathing animation. Place this file in your keyboard or keymap directory as `rgblight_breathe_table.h` to override the default LUT in `quantum/rgblight/`. |
| 372 | 372 | ||
| 373 | **Usage**: | 373 | **Usage**: |
| 374 | 374 | ||
diff --git a/docs/feature_rgblight.md b/docs/feature_rgblight.md index 994a014a2..0e75411f0 100644 --- a/docs/feature_rgblight.md +++ b/docs/feature_rgblight.md | |||
| @@ -119,7 +119,7 @@ if `RGBLIGHT_EFFECT_xxxx` or `RGBLIGHT_ANIMATIONS` is defined, you also have a n | |||
| 119 | 119 | ||
| 120 | Check out [this video](https://youtube.com/watch?v=VKrpPAHlisY) for a demonstration. | 120 | Check out [this video](https://youtube.com/watch?v=VKrpPAHlisY) for a demonstration. |
| 121 | 121 | ||
| 122 | Note: For versions older than 0.6.117, The mode numbers were written directly. In `quantum/rgblight.h` there is a contrast table between the old mode number and the current symbol. | 122 | Note: For versions older than 0.6.117, The mode numbers were written directly. In `quantum/rgblight/rgblight.h` there is a contrast table between the old mode number and the current symbol. |
| 123 | 123 | ||
| 124 | ### Effect and Animation Toggles | 124 | ### Effect and Animation Toggles |
| 125 | 125 | ||
| @@ -328,7 +328,7 @@ Normally lighting layers are not shown when RGB Lighting is disabled (e.g. with | |||
| 328 | 328 | ||
| 329 | ## Functions | 329 | ## Functions |
| 330 | 330 | ||
| 331 | If you need to change your RGB lighting in code, for example in a macro to change the color whenever you switch layers, QMK provides a set of functions to assist you. See [`rgblight.h`](https://github.com/qmk/qmk_firmware/blob/master/quantum/rgblight.h) for the full list, but the most commonly used functions include: | 331 | If you need to change your RGB lighting in code, for example in a macro to change the color whenever you switch layers, QMK provides a set of functions to assist you. See [`rgblight.h`](https://github.com/qmk/qmk_firmware/blob/master/quantum/rgblight/rgblight.h) for the full list, but the most commonly used functions include: |
| 332 | 332 | ||
| 333 | ### Utility Functions | 333 | ### Utility Functions |
| 334 | |Function |Description | | 334 | |Function |Description | |
