From b3ec067a748fc5b02b0e7ddc5e380caf814edaec Mon Sep 17 00:00:00 2001 From: programminghoch10 <16062290+programminghoch10@users.noreply.github.com> Date: Wed, 7 Oct 2020 15:54:39 +0200 Subject: [PATCH] fixed some typos --- libraries/WiFi/examples/WPS/WPS.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/WiFi/examples/WPS/WPS.ino b/libraries/WiFi/examples/WPS/WPS.ino index 06ccbb38438..6b134375840 100644 --- a/libraries/WiFi/examples/WPS/WPS.ino +++ b/libraries/WiFi/examples/WPS/WPS.ino @@ -6,7 +6,7 @@ based WPS entry to get your ESP connected to your WiFi router. Hardware Requirements ======================== -ESP32 and a Router having atleast one WPS functionality +ESP32 and a Router having WPS functionality This code is under Public Domain License. @@ -63,7 +63,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){ WiFi.reconnect(); break; case SYSTEM_EVENT_STA_WPS_ER_SUCCESS: - Serial.println("WPS Successfull, stopping WPS and connecting to: " + String(WiFi.SSID())); + Serial.println("WPS Successful, stopping WPS and connecting to: " + String(WiFi.SSID())); esp_wifi_wps_disable(); delay(10); WiFi.begin(); @@ -75,7 +75,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){ esp_wifi_wps_start(0); break; case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT: - Serial.println("WPS Timedout, retrying"); + Serial.println("WPS Timeout, retrying"); esp_wifi_wps_disable(); esp_wifi_wps_enable(&config); esp_wifi_wps_start(0); @@ -106,4 +106,4 @@ void setup(){ void loop(){ //nothing to do here -} \ No newline at end of file +}