From 9e65b81cd5edf96f3b7dfab2ee64d4456cc13a7c Mon Sep 17 00:00:00 2001 From: Ronald Schaten Date: Tue, 22 Mar 2016 01:01:27 +0100 Subject: [PATCH] replace meaningless hostname with MQTT topic on main page --- things.ino | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/things.ino b/things.ino index fefe962..a80a39b 100644 --- a/things.ino +++ b/things.ino @@ -359,7 +359,7 @@ void setup() { response += "\r\n"; response += "
\r\n"; response += "

"; - response += wifi_station_get_hostname(); + response += mqtt_topic; response += "

\r\n"; response += "

Sensor Status

\r\n"; response += "\r\n"; @@ -367,8 +367,6 @@ void setup() { response += mqtt_server; response += ":"; response += mqtt_port; - response += "
MQTT Topic"; - response += mqtt_topic; if (capability_dht) { response += "
Temperature"; response += str_temperature;