This commit is contained in:
mvdbro
2017-08-26 09:35:02 +02:00
parent 2b8a881130
commit 493f4b6323
4 changed files with 9 additions and 4 deletions

View File

@@ -76,7 +76,7 @@
#define socketdebug false
#define ARDUINO_PROJECT_PID 2016110201L
#define VERSION 2
#define BUILD 152
#define BUILD 153
#define BUILD_NOTES ""
#define NODE_TYPE_ID_ESP_EASY_STD 1

View File

@@ -371,6 +371,7 @@ void sendSysInfoUDP(byte repeats)
Nodes[Settings.Unit].ip[x] = ip[x];
Nodes[Settings.Unit].age = 0;
Nodes[Settings.Unit].build = Settings.Build;
Nodes[Settings.Unit].nodeType = NODE_TYPE_ID;
}
}

View File

@@ -279,7 +279,7 @@ void handle_root(EthernetClient client, String &post) {
reply += printWebString;
reply += F("<form>");
reply += F("<table><TH>System Info<TH>Value<TH><TH>System Info<TH>Value");
reply += F("<table><TH>System Info<TH>Value<TH><TH>System Info<TH>Value<TH>");
reply += F("<TR><TD>Unit:<TD>");
reply += Settings.Unit;
@@ -336,9 +336,9 @@ void handle_root(EthernetClient client, String &post) {
reply = "";
#if FEATURE_NODELIST_NAMES
reply += F("<TR><TH>Node List:<TH>Name<TH>Build<TH>Type<TH>IP<TH>Age<TH><TR><TD><TD><TD>");
reply += F("<TR><TH>Node List:<TH>Name<TH>Build<TH>Type<TH>IP<TH>Age");
#else
reply += F("<TR><TH>Node List:<TH>Build<TH>Type<TH>IP<TH>Age<TH><TR><TD><TD><TD>");
reply += F("<TR><TH>Node List:<TH>Build<TH>Type<TH>IP<TH>Age<TH>");
#endif
for (byte x = 0; x < UNIT_MAX; x++)
{

View File

@@ -1,3 +1,7 @@
// R153
// Added nodetype to self.
// Minor cosmetic GUI fixes
// R152 21-08-2017
// Fixed a bug with getting NTP time when nodelist is active and fixed a socket issue when combined with MQTT
// Dummy WebServer class to mimic WebServer.arg calls from plugins