1# Copyright (c) 2019 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4menu "WS2812 Sample Configuration"
5
6config SAMPLE_LED_UPDATE_DELAY
7	int "Delay between LED updates in ms"
8	default 50
9	help
10	  Delay between LED updates in ms.
11
12config SAMPLE_LED_BRIGHTNESS
13	int "LED brightness"
14	default 16
15	range 1 255
16	help
17	  Brightness level of each LED. Defaults to a low value to make
18	  it easier to distinguish colors.
19
20endmenu
21
22source "Kconfig.zephyr"
23