diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:24:42 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 14:24:42 +1100 |
commit | 37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (patch) | |
tree | 31b12eb9ee9450ee5f5cf5a3da290e3c4bd81c41 /docs/cli_commands.md | |
parent | 3925ff534251f44bc21848b5509415c1e41ff419 (diff) | |
download | qmk_firmware-37fb14f1b5cbcb0e5ff60abc9152073635234ba4.tar.gz qmk_firmware-37fb14f1b5cbcb0e5ff60abc9152073635234ba4.zip |
CLI-ify rgblight_breathing_table_calc.c (#11174)
Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
Co-authored-by: Zach White <skullydazed@drpepper.org>
Diffstat (limited to 'docs/cli_commands.md')
-rw-r--r-- | docs/cli_commands.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/cli_commands.md b/docs/cli_commands.md index 69df82f953..71c803bc21 100644 --- a/docs/cli_commands.md +++ b/docs/cli_commands.md @@ -296,6 +296,16 @@ This command allows you to generate QMK documentation locally. It can be uses fo qmk generate-docs ``` +## `qmk generate-rgb-breathe-table` + +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/`. + +**Usage**: + +``` +qmk generate-rgb-breathe-table [-q] [-o OUTPUT] [-m MAX] [-c CENTER] +``` + ## `qmk kle2json` This command allows you to convert from raw KLE data to QMK Configurator JSON. It accepts either an absolute file path, or a file name in the current directory. By default it will not overwrite `info.json` if it is already present. Use the `-f` or `--force` flag to overwrite. |