This commit is contained in:
Nicu Hodos 2024-10-05 13:55:55 +02:00
parent d53184985d
commit 26ff04d963
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);
}