File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
libraries/WiFi/examples/WPS Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ based WPS entry to get your ESP connected to your WiFi router.
66
77Hardware Requirements
88========================
9- ESP32 and a Router having atleast one WPS functionality
9+ ESP32 and a Router having WPS functionality
1010
1111This 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
107107void loop (){
108108 // nothing to do here
109- }
109+ }
You can’t perform that action at this time.
0 commit comments