18 lines
307 B
Text
18 lines
307 B
Text
|
menu "Example Configuration"
|
||
|
|
||
|
choice EXAMPLE_WPS_TYPE
|
||
|
prompt "WPS mode"
|
||
|
default EXAMPLE_WPS_TYPE_PBC
|
||
|
help
|
||
|
WPS type for the esp32 to use.
|
||
|
|
||
|
config EXAMPLE_WPS_TYPE_PBC
|
||
|
bool "PBC"
|
||
|
config EXAMPLE_WPS_TYPE_PIN
|
||
|
bool "PIN"
|
||
|
config EXAMPLE_WPS_TYPE_DISABLE
|
||
|
bool "disable"
|
||
|
endchoice
|
||
|
|
||
|
endmenu
|