diff options
author | Ricardo Alcântara <ricardo_alcantara2@hotmail.com> | 2022-03-14 15:28:42 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 14:28:42 -0400 |
commit | 0761026e36e223314ee6a5fcf8ea3c47631b8cd2 (patch) | |
tree | 4aab36f60bad94e7c502f7cde80077e6fcc6b713 /docs/Config_Reference.md | |
parent | df79893dbc5c63df325769c7bd48e1c0ed4a08dc (diff) | |
download | kutter-0761026e36e223314ee6a5fcf8ea3c47631b8cd2.tar.gz kutter-0761026e36e223314ee6a5fcf8ea3c47631b8cd2.tar.xz kutter-0761026e36e223314ee6a5fcf8ea3c47631b8cd2.zip |
pca9632: LED module for FlashForge Dreamer 3D printer (#4654)
Added PCA9632 LED module support using software I2C from MCP4018
modulo drive the LED strip of a FlashForge Dreamer 3D printer.
Based on the PCA9533 module.
Signed-off-by: Ricardo Alcantara <ricardo@vulcanolabs.xyz>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 66205fc3..fc92c013 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -2611,6 +2611,26 @@ PCA9533 LED support. The PCA9533 is used on the mightyboard. # Use GCODE to modify led values after startup. # set_led led=my_pca9533 red=1 green=1 blue=1 ``` +### [PCA9632] + +PCA9632 LED support. The PCA9632 is used on the FlashForge Dreamer. + +``` +[pca9632 my_pca9632] +scl_pin: +# The SCL "clock" pin. This parameter must be provided. +sda_pin: +# The SDA "data" pin. This parameter must be provided. +#initial_RED: 0 +#initial_GREEN: 0 +#initial_BLUE: 0 +#initial_WHITE: 0 +# PCA9632 supports individual LED PWM. +# Values range from 0.0 to 1.0. The default is 0.0. +# On the FlashForge Dreamer, the white led is not populated. +# Use GCODE to modify led values after startup. +# set_led led=my_pca9632 red=1.0 green=1.0 blue=1.0 white=0.0 +``` ### [gcode_button] |