fix: add HTTP service to mDNS responder

This commit is contained in:
2025-09-13 10:06:52 +02:00
parent e21e13efe6
commit 10caf06021

View File

@@ -36,6 +36,7 @@ void startMDNS() {
vTaskDelay(1000 / portTICK_PERIOD_MS); vTaskDelay(1000 / portTICK_PERIOD_MS);
} }
} }
MDNS.addService("http", "tcp", 80);
Serial.println("mDNS responder started"); Serial.println("mDNS responder started");
} }