mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 02:15:22 +00:00
This driver supports multi-color LEDs built with several monochromatic LEDs. ->set_color is the only LED driver API method implemented. Instead of calling led_set_brightness() for each monochromatic LED, led_set_color() can be called on the leds-group-multicolor device to set all colors at once. See the leds-group-multicolor DT binding for details. Signed-off-by: Simon Guinot <simon.guinot@seagate.com>
13 lines
367 B
Plaintext
13 lines
367 B
Plaintext
# Copyright (c) 2025 Seagate Technology LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config LEDS_GROUP_MULTICOLOR
|
|
bool "LEDs group multi-color driver"
|
|
default y
|
|
depends on DT_HAS_LEDS_GROUP_MULTICOLOR_ENABLED
|
|
help
|
|
Enable this driver to supports multi-color LEDs built with several
|
|
monochromatic LEDs.
|
|
|
|
See the leds-group-multicolor DT binding for details.
|