30 lines
806 B
Plaintext
30 lines
806 B
Plaintext
menu "Warnemuende Lighthouse"
|
|
config WLED_DIN_PIN
|
|
int "WLED Data In Pin"
|
|
default 14
|
|
help
|
|
The number of the WLED data in pin.
|
|
|
|
choice LIGHT_CHARACTERISTIC_CHOICE
|
|
prompt "Light characteristic"
|
|
default LIGHT_CHARACTERISTIC_GREEN
|
|
help
|
|
The color of the main WLED light.
|
|
|
|
config LIGHT_CHARACTERISTIC_GREEN
|
|
bool "Green flashing light"
|
|
help
|
|
The light will be flashing green.
|
|
|
|
config LIGHT_CHARACTERISTIC_RED
|
|
bool "Red flashing light"
|
|
help
|
|
The light will be flashing red.
|
|
endchoice
|
|
|
|
config LIGHT_CHARACTERISTIC_VALUE
|
|
int
|
|
default 1 if LIGHT_CHARACTERISTIC_GREEN
|
|
default 2 if LIGHT_CHARACTERISTIC_RED
|
|
endmenu
|