diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Config_Changes.md | 4 | ||||
-rw-r--r-- | docs/Config_Reference.md | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md index 587c06b0..4e708022 100644 --- a/docs/Config_Changes.md +++ b/docs/Config_Changes.md @@ -8,6 +8,10 @@ All dates in this document are approximate. ## Changes +20220407: The default color order for pca9632 LEDs is now "RGBW". Add +an explicit `color_order: RBGW` setting to the pca9632 config section +to obtain the previous behavior. + 20220330: The format of the `printer.neopixel.color_data` status information for neopixel and dotstar modules has changed. The information is now stored as a list of color lists (instead of a list diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 3763aaf8..3786e11b 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -2629,6 +2629,9 @@ PCA9632 LED support. The PCA9632 is used on the FlashForge Dreamer. # Alternatively, if the pca9632 is not connected to a hardware I2C # bus, then one may specify the "clock" (scl_pin) and "data" # (sda_pin) pins. The default is to use hardware I2C. +#color_order: RGBW +# Set the pixel order of the LED (using a string containing the +# letters R, G, B, W). The default is RGBW. #initial_RED: 0.0 #initial_GREEN: 0.0 #initial_BLUE: 0.0 |