- instead of storing chunk duration in ms store the frame count and do calculations based on that - add updated snapserver.conf for reference (#17) - some code clean up - move Kconfig entries to correct place - remove unnecessary Kconfig entries - add necessary dependencies in Kconfig files Signed-off-by: Karl Osterseher <karli_o@gmx.at>
29 lines
812 B
Plaintext
29 lines
812 B
Plaintext
menu "Snapcast 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.
|
|
endmenu
|