From 94de4d165ecf574b1232c0c434fd5267ca5bb0f7 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 12 Sep 2023 00:03:52 -0400 Subject: [PATCH] enabling connecting to wifi --- Platformio/HAL/Targets/ESP32/wifiHandler/wifihandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platformio/HAL/Targets/ESP32/wifiHandler/wifihandler.cpp b/Platformio/HAL/Targets/ESP32/wifiHandler/wifihandler.cpp index 9aee168..7b55a67 100644 --- a/Platformio/HAL/Targets/ESP32/wifiHandler/wifihandler.cpp +++ b/Platformio/HAL/Targets/ESP32/wifiHandler/wifihandler.cpp @@ -179,7 +179,7 @@ void wifiHandler::begin() //strcpy(this->password, password.c_str()); this->SSID = ssid.c_str(); this->password = password.c_str(); - //this->connect(std::make_shared(std::string(this->SSID)), std::make_shared(std::string(this->password))); + this->connect(std::make_shared(std::string(this->SSID)), std::make_shared(std::string(this->password))); } else {