Skip to content

Commit c3f3497

Browse files
fixed some typos (#4395)
1 parent 18c3345 commit c3f3497

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: libraries/WiFi/examples/WPS/WPS.ino

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ based WPS entry to get your ESP connected to your WiFi router.
66
77
Hardware Requirements
88
========================
9-
ESP32 and a Router having atleast one WPS functionality
9+
ESP32 and a Router having WPS functionality
1010
1111
This code is under Public Domain License.
1212
@@ -63,7 +63,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
6363
WiFi.reconnect();
6464
break;
6565
case SYSTEM_EVENT_STA_WPS_ER_SUCCESS:
66-
Serial.println("WPS Successfull, stopping WPS and connecting to: " + String(WiFi.SSID()));
66+
Serial.println("WPS Successful, stopping WPS and connecting to: " + String(WiFi.SSID()));
6767
esp_wifi_wps_disable();
6868
delay(10);
6969
WiFi.begin();
@@ -75,7 +75,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
7575
esp_wifi_wps_start(0);
7676
break;
7777
case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT:
78-
Serial.println("WPS Timedout, retrying");
78+
Serial.println("WPS Timeout, retrying");
7979
esp_wifi_wps_disable();
8080
esp_wifi_wps_enable(&config);
8181
esp_wifi_wps_start(0);
@@ -106,4 +106,4 @@ void setup(){
106106

107107
void loop(){
108108
//nothing to do here
109-
}
109+
}

0 commit comments

Comments
 (0)