mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 23:24:54 +00:00
• 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>
11 lines
247 B
Plaintext
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.
|