Bläddra i källkod

print build date

Thomas Buck 1 år sedan
förälder
incheckning
601b520d28
1 ändrade filer med 6 tillägg och 0 borttagningar
  1. 6
    0
      src/html.cpp

+ 6
- 0
src/html.cpp Visa fil

@@ -105,6 +105,12 @@ void handlePage(WiFiClient &client, int mode, int id) {
105 105
     message += F("Version: ");
106 106
     message += ESP_ENV_VERSION;
107 107
     message += F("\n<br>\n");
108
+    message += F("Build Date: ");
109
+    message += __DATE__;
110
+    message += F("\n<br>\n");
111
+    message += F("Build Time: ");
112
+    message += __TIME__;
113
+    message += F("\n<br>\n");
108 114
     message += F("Location: ");
109 115
     message += SENSOR_LOCATION;
110 116
     message += F("\n<br>\n");

Laddar…
Avbryt
Spara