zephyr/drivers/led/Kconfig.pca9533
Van Petrosyan 7c845f14d4 drivers: led: Implemented PCA9533 driver with PM support
• Supports led_on/off, led_set_brightness (0–100 %, 152 Hz default),
  and led_blink (7 ms – 1.685 s) with automatic sharing of the two
  on-chip PWM engines; returns –EBUSY when a third distinct pair is
  requested.

• Includes basic runtime-PM boilerplate to honour power-domain control;
  the device itself has no dedicated low-power states.

Signed-off-by: Van Petrosyan <van.petrosyan@sensirion.com>
2025-07-28 16:43:48 -04:00

11 lines
247 B
Plaintext

# Copyright (c) 2025 Van Petrosyan
# SPDX-License-Identifier: Apache-2.0
config PCA9533
bool "PCA9533 LED driver"
default y
depends on DT_HAS_NXP_PCA9533_ENABLED
select I2C
help
Enable driver support for the NXP PCA9533 4-bit LED dimmer.