Unify `led_apa102` and `led_lpd8806` samples into `led_strip` and remove these. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
23 lines
492 B
Plaintext
23 lines
492 B
Plaintext
# Copyright (c) 2019 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "WS2812 Sample Configuration"
|
|
|
|
config SAMPLE_LED_UPDATE_DELAY
|
|
int "Delay between LED updates in ms"
|
|
default 50
|
|
help
|
|
Delay between LED updates in ms.
|
|
|
|
config SAMPLE_LED_STRIP_LENGTH
|
|
int "LED strip length"
|
|
default 0
|
|
help
|
|
Number of LEDs in the strip.
|
|
If the value is zero, use the 'chain-length' property in
|
|
devicetree instead to determine LED numbers.
|
|
|
|
endmenu
|
|
|
|
source "Kconfig.zephyr"
|