add network device name to sysinfo page

This commit is contained in:
technyon
2023-02-05 19:26:15 +01:00
parent 8580857ef3
commit ff62368012
8 changed files with 26 additions and 0 deletions

View File

@@ -766,6 +766,10 @@ void WebCfgServer::buildInfoHtml(String &response)
response.concat(_nukiOpener->isPaired() ? _nukiOpener->isPinSet() ? "Yes\n" : "No\n" : "-\n");
}
response.concat("Network device: ");
response.concat(_network->networkDeviceName());
response.concat("\n");
response.concat("Heap: ");
response.concat(esp_get_free_heap_size());
response.concat("\n");