🎨 Replaces delay with vTaskDelay

This commit is contained in:
Rune Harlyk
2025-09-14 19:46:42 +02:00
committed by Rune Harlyk
parent 4ea287b162
commit 0285b522f1
6 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ void WiFiService::begin() {
if (state().wifiSettings.size() == 1) {
configureNetwork(state().wifiSettings[0]);
delay(500);
vTaskDelay(500 / portTICK_PERIOD_MS);
}
}