1# Copyright (c) 2024 TOKITA Hiroshi
2# SPDX-License-Identifier: Apache-2.0
3
4config BLINK_DELAY_SHORT
5	int "Blinking delay for short cycle demo"
6	default 100
7	help
8	  Specifies the LED on/off delay in milliseconds for short cycle
9	  blinking demonstration.
10	  If set to 0, the short-cycle blinking demo will not be performed.
11
12config BLINK_DELAY_LONG
13	int "Blinking delay for long cycle demo"
14	default 1000
15	help
16	  Specifies the LED on/off delay in milliseconds for long cycle
17	  blinking demonstration.
18	  If set to 0, the long-cycle blinking demo will not be performed.
19
20config FADE_DELAY
21	int "Delay time for fade demo"
22	default 10
23	help
24	  Specifies the delay in milliseconds for the fade demo of the
25	  PWM-LED sample.
26	  The brightness gradually increases by one level each time this
27	  delay elapses.
28
29source "Kconfig.zephyr"
30