Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Bissas committed Mar 10, 2024
1 parent 305b9d4 commit 1e25645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handler/deploii_handler_WiFi_WS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void connectWiFi(char* ssid, const char* pwd) {
#elif defined(ARDUINO)

void connectWiFi(char* ssid, const char* pwd) {
while (WiFi.begin(SSID, pwd) != WL_CONNECTED) delay(Deploii_WIFI_RECONNECT_TIME);
while (WiFi.begin(ssid, pwd) != WL_CONNECTED) delay(Deploii_WIFI_RECONNECT_TIME);
}

#else
Expand Down

0 comments on commit 1e25645

Please sign in to comment.