File tree 1 file changed +4
-4
lines changed
libraries/WiFi/examples/WPS
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.
6
6
7
7
Hardware Requirements
8
8
========================
9
- ESP32 and a Router having atleast one WPS functionality
9
+ ESP32 and a Router having WPS functionality
10
10
11
11
This code is under Public Domain License.
12
12
@@ -63,7 +63,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
63
63
WiFi.reconnect ();
64
64
break ;
65
65
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 ()));
67
67
esp_wifi_wps_disable ();
68
68
delay (10 );
69
69
WiFi.begin ();
@@ -75,7 +75,7 @@ void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
75
75
esp_wifi_wps_start (0 );
76
76
break ;
77
77
case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT:
78
- Serial.println (" WPS Timedout , retrying" );
78
+ Serial.println (" WPS Timeout , retrying" );
79
79
esp_wifi_wps_disable ();
80
80
esp_wifi_wps_enable (&config);
81
81
esp_wifi_wps_start (0 );
@@ -106,4 +106,4 @@ void setup(){
106
106
107
107
void loop (){
108
108
// nothing to do here
109
- }
109
+ }
You can’t perform that action at this time.
0 commit comments