Update Tasks

This commit is contained in:
iranl
2024-05-20 20:24:02 +02:00
parent 8d03cd66f2
commit a823667120
5 changed files with 61 additions and 14 deletions

View File

@@ -1765,8 +1765,12 @@ void WebCfgServer::buildInfoHtml(String &response)
response.concat(uxTaskGetStackHighWaterMark(networkTaskHandle));
response.concat(", nuki: ");
response.concat(uxTaskGetStackHighWaterMark(nukiTaskHandle));
response.concat(", pd: ");
response.concat(uxTaskGetStackHighWaterMark(presenceDetectionTaskHandle));
if(_preferences->getInt(preference_presence_detection_timeout) >= 0)
{
response.concat(", pd: ");
response.concat(uxTaskGetStackHighWaterMark(presenceDetectionTaskHandle));
}
response.concat("\n");
_gpio->getConfigurationText(response, _gpio->pinConfiguration());