diff --git a/src/httpserver/http_fns.c b/src/httpserver/http_fns.c index 906bf3ae7..b33e241a6 100644 --- a/src/httpserver/http_fns.c +++ b/src/httpserver/http_fns.c @@ -987,6 +987,7 @@ int http_fn_cfg_mqtt(http_request_t* request) { http_setup(request, httpMimeTypeHTML); http_html_start(request, "MQTT"); poststr_h2(request, "Use this to connect to your MQTT"); + poststr_h4(request, "To disable MQTT, clear the host field."); hprintf255(request, "

Command topic: cmnd/%s/[Command]

", CFG_GetMQTTClientId()); hprintf255(request, "

Publish data topic: %s/[Channel]/get

", CFG_GetMQTTClientId()); hprintf255(request, "

Receive data topic: %s/[Channel]/set

", CFG_GetMQTTClientId());