diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-04-18 09:34:31 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-04-18 10:16:10 -0400 |
commit | 5f0885958d42a282e04b0c1ba1c4d4ec55393455 (patch) | |
tree | 65698e2533e01ff71aebcaf4e26c92df5d63205a /docs/Config_Reference.md | |
parent | 53a7f1dd762330b7d36b24dbd8ac967d780ea13f (diff) | |
download | kutter-5f0885958d42a282e04b0c1ba1c4d4ec55393455.tar.gz kutter-5f0885958d42a282e04b0c1ba1c4d4ec55393455.tar.xz kutter-5f0885958d42a282e04b0c1ba1c4d4ec55393455.zip |
neopixel: Support chains with a mix of color_order
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Config_Reference.md')
-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 f0332bc6..7a6f9758 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -2629,8 +2629,9 @@ pin: # Neopixel is connected to the pin). #color_order: 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. +# containing the letters R, G, B, W with W optional). Alternatively, +# this may be a comma separated list of pixel orders - one for each +# LED in the chain. The default is GRB. #initial_RED: 0.0 #initial_GREEN: 0.0 #initial_BLUE: 0.0 |