Unverified Commit c3f34970 authored by programminghoch10's avatar programminghoch10 Committed by GitHub

fixed some typos (#4395)

parent 18c33454
...@@ -6,7 +6,7 @@ based WPS entry to get your ESP connected to your WiFi router. ...@@ -6,7 +6,7 @@ based WPS entry to get your ESP connected to your WiFi router.
Hardware Requirements 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. This code is under Public Domain License.
...@@ -63,7 +63,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){ ...@@ -63,7 +63,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
WiFi.reconnect(); WiFi.reconnect();
break; break;
case SYSTEM_EVENT_STA_WPS_ER_SUCCESS: 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(); esp_wifi_wps_disable();
delay(10); delay(10);
WiFi.begin(); WiFi.begin();
...@@ -75,7 +75,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){ ...@@ -75,7 +75,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
esp_wifi_wps_start(0); esp_wifi_wps_start(0);
break; break;
case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT: case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT:
Serial.println("WPS Timedout, retrying"); Serial.println("WPS Timeout, retrying");
esp_wifi_wps_disable(); esp_wifi_wps_disable();
esp_wifi_wps_enable(&config); esp_wifi_wps_enable(&config);
esp_wifi_wps_start(0); esp_wifi_wps_start(0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment