diff options
author | le-Bark <43352109+le-Bark@users.noreply.github.com> | 2021-04-09 17:47:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 17:47:16 -0400 |
commit | eb4abdd83099d8a889850c852c44d1fa3e00eab6 (patch) | |
tree | 9b968190089c761d85dd11b2cdef7f92f3fc7609 /docs | |
parent | b1b24885380674784e228aee4fae4bfad30ab20b (diff) | |
download | kutter-eb4abdd83099d8a889850c852c44d1fa3e00eab6.tar.gz kutter-eb4abdd83099d8a889850c852c44d1fa3e00eab6.tar.xz kutter-eb4abdd83099d8a889850c852c44d1fa3e00eab6.zip |
pca9533: RGB support for the mightyboard (#4150)
Signed-off-by: Marc-André Denis <marcadenis@msn.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Config_Reference.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 17c9d6e2..9c9755ff 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -2471,6 +2471,28 @@ clock_pin: #initial_BLUE: 0.0 # See the "neopixel" section for information on these parameters. ``` +## [PCA9533] +PCA9533 LED support. The PCA9533 is used on the mightyboard. + +``` +[pca9533 my_pca9533] +#i2c_address: 98 +# The i2c address that the chip is using on the i2c bus. The default +# is 98 for the PCA9533/1, 99 for the PCA9533/2. +#i2c_mcu: +#i2c_bus: +#i2c_speed: +# See the "common I2C settings" section for a description of the +# above parameters. +#initial_RED: 1 +#initial_GREEN: 1 +#initial_BLUE: 1 +#initial_WHITE: 1 +# The PCA9533 only supports 1 or 0, any other values will be considered as 1. The default is 0. +# On the mightyboard, the white led is not populated. +# Use GCODE to modify led values after startup. +# set_led led=my_pca9533 red=1 green=1 blue=1 +``` ## [gcode_button] |