mirror of
https://github.com/letscontrolit/ArduinoEasy.git
synced 2026-03-03 00:24:02 +01:00
R153
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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++)
|
||||
{
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user