diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-04-06 09:27:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-04-06 09:27:36 -0400 |
commit | dc7b02f329660a716a180c6a17ea15fc265d4527 (patch) | |
tree | 6176e7a90f8feae8d7a3d1a3f6f504a72bebfb24 /docs | |
parent | 92de6e91dcc7df19d74100d349ef9dcf4d833441 (diff) | |
download | kutter-dc7b02f329660a716a180c6a17ea15fc265d4527.tar.gz kutter-dc7b02f329660a716a180c6a17ea15fc265d4527.tar.xz kutter-dc7b02f329660a716a180c6a17ea15fc265d4527.zip |
neopixel: Support arbitrary RGBW strings in color_order config
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Config_Reference.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index c62d4274..780d5707 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -2557,8 +2557,9 @@ pin: # provided pin. The default is 1 (which indicates only a single # Neopixel is connected to the pin). #color_order: GRB -# Set the pixel order required by the LED hardware. Options are GRB, -# RGB, BRG, BGR, GRBW, or RGBW. The default is GRB. +# Set the pixel order required by the LED hardware (using a string +# containing the letters R, G, B, W with W optional). The default is +# GRB. #initial_RED: 0.0 #initial_GREEN: 0.0 #initial_BLUE: 0.0 |