Replaced delay(1) with yield()

This commit is contained in:
Daniel Eichhorn
2017-05-18 14:17:17 +02:00
parent aa8481feeb
commit 8f18cf20bd

View File

@@ -87,7 +87,7 @@ void WebResource::downloadFile(String url, String filename, ProgressCallback pro
}
progressCallback(filename, total - len,total);
}
delay(1);
yield();
}
Serial.println();