22 lines
536 B
Plaintext
22 lines
536 B
Plaintext
menu "Calendink LED Configuration"
|
|
|
|
choice CALENDINK_LED_TYPE
|
|
prompt "LED Type"
|
|
default CALENDINK_LED_TYPE_STRIP
|
|
help
|
|
Select the type of LED used on the board.
|
|
|
|
config CALENDINK_LED_TYPE_STRIP
|
|
bool "Addressable RGB LED Strip (e.g. WS2812)"
|
|
|
|
config CALENDINK_LED_TYPE_SIMPLE
|
|
bool "Simple GPIO LED (On/Off)"
|
|
endchoice
|
|
|
|
config CALENDINK_LED_GPIO
|
|
int "LED GPIO"
|
|
default 21
|
|
help
|
|
GPIO pin for the LED.
|
|
endmenu
|