Files
snapclient/main/Kconfig.projbuild
Karl Osterseher 30dcc47ba9 - add support for Ethernet using an external PHY
currently it is either WiFi or Ethernet. If Ethernet is enabled through menuconfig it gets priority and WiFi is disabled.
2023-01-21 23:25:52 +01:00

37 lines
964 B
Plaintext

menu "Snapclient Configuration"
config SNAPSERVER_USE_MDNS
bool "Use mDNS"
default true
help
Use mDNS to look for the snapserver to connect to on the local network.
config SNAPSERVER_HOST
string "Snapserver host"
default "192.168.1.158"
depends on !SNAPSERVER_USE_MDNS
help
Host (ip or name) of snapserver to connect to if mDNS is disabled or the mDNS resolution fails.
config SNAPSERVER_PORT
int "Snapserver port"
default 1704
depends on !SNAPSERVER_USE_MDNS
help
Port of the snapserver to connect to.
config SNAPCLIENT_NAME
string "snapclient name"
default "ESP32-Caster"
help
Name of the client to register the snapserver.
menu "HTTP Server Setting"
config WEB_PORT
int "User interface HTTP Server Port"
default 8000
help
HTTP server port to use.
endmenu
endmenu