Merge branch 'v2.0.1'

This commit is contained in:
Nicu Hodos 2024-10-05 21:31:07 +02:00
commit 252e01b8cf
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "Wifi",
"version": "2.0.0",
"version": "2.0.1",
"description": "Helper classes for handling wifi connectiviy and OTA",
"repository":
{

View File

@ -12,7 +12,7 @@ namespace Wifi {
Task tConnect(1 * TASK_MINUTE, TASK_FOREVER,
[] {
if (WiFi.status() != WL_CONNECTED) {
Serial.println("Connecting to WiFi netowrk...");
Serial.println("Connecting to WiFi network...");
WiFi.forceSleepWake();
WiFi.begin(credentials.ssid, credentials.password);
}