File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 12
12
13
13
// Initialize Wifi connection to the router
14
14
char ssid[] = " xxxxxxxxxxxxxxxxxxxxxx" ; // your network SSID (name)
15
- char pass [] = " yyyyyyyy" ; // your network key
15
+ char password [] = " yyyyyyyy" ; // your network key
16
16
17
17
18
18
@@ -75,7 +75,7 @@ void setup() {
75
75
// attempt to connect to Wifi network:
76
76
Serial.print (" Connecting Wifi: " );
77
77
Serial.println (ssid);
78
- while (WiFi.begin (ssid, pass ) != WL_CONNECTED) {
78
+ while (WiFi.begin (ssid, password ) != WL_CONNECTED) {
79
79
Serial.print (" ." );
80
80
delay (500 );
81
81
}
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ void setup() {
37
37
// Attempt to connect to Wifi network:
38
38
Serial.print (" Connecting Wifi: " );
39
39
Serial.println (ssid);
40
- while (WiFi.begin (ssid, pass ) != WL_CONNECTED) {
40
+ while (WiFi.begin (ssid, password ) != WL_CONNECTED) {
41
41
Serial.print (" ." );
42
42
delay (500 );
43
43
}
Original file line number Diff line number Diff line change 13
13
14
14
// Initialize Wifi connection to the router
15
15
char ssid[] = " xxxxxxxxxxxxxxxxxxxxxx" ; // your network SSID (name)
16
- char pass [] = " yyyyyyyy" ; // your network key
16
+ char password [] = " yyyyyyyy" ; // your network key
17
17
18
18
19
19
@@ -72,7 +72,7 @@ void setup() {
72
72
// attempt to connect to Wifi network:
73
73
Serial.print (" Connecting Wifi: " );
74
74
Serial.println (ssid);
75
- while (WiFi.begin (ssid, pass ) != WL_CONNECTED) {
75
+ while (WiFi.begin (ssid, password ) != WL_CONNECTED) {
76
76
Serial.print (" ." );
77
77
delay (500 );
78
78
}
Original file line number Diff line number Diff line change 12
12
13
13
// Initialize Wifi connection to the router
14
14
char ssid[] = " xxxxxxxxxxxxxxxxxxxxxx" ; // your network SSID (name)
15
- char pass [] = " yyyyyyyy" ; // your network key
15
+ char password [] = " yyyyyyyy" ; // your network key
16
16
17
17
18
18
@@ -79,7 +79,7 @@ void setup() {
79
79
// attempt to connect to Wifi network:
80
80
Serial.print (" Connecting Wifi: " );
81
81
Serial.println (ssid);
82
- while (WiFi.begin (ssid, pass ) != WL_CONNECTED) {
82
+ while (WiFi.begin (ssid, password ) != WL_CONNECTED) {
83
83
Serial.print (" ." );
84
84
delay (500 );
85
85
}
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ void setup() {
40
40
// Attempt to connect to Wifi network:
41
41
Serial.print (" Connecting Wifi: " );
42
42
Serial.println (ssid);
43
- while (WiFi.begin (ssid, pass ) != WL_CONNECTED) {
43
+ while (WiFi.begin (ssid, password ) != WL_CONNECTED) {
44
44
Serial.print (" ." );
45
45
delay (500 );
46
46
}
Original file line number Diff line number Diff line change 13
13
14
14
// Initialize Wifi connection to the router
15
15
char ssid[] = " xxxxxxxxxxxxxxxxxxxxxx" ; // your network SSID (name)
16
- char pass [] = " yyyyyyyy" ; // your network key
16
+ char password [] = " yyyyyyyy" ; // your network key
17
17
18
18
19
19
@@ -76,7 +76,7 @@ void setup() {
76
76
// attempt to connect to Wifi network:
77
77
Serial.print (" Connecting Wifi: " );
78
78
Serial.println (ssid);
79
- while (WiFi.begin (ssid, pass ) != WL_CONNECTED) {
79
+ while (WiFi.begin (ssid, password ) != WL_CONNECTED) {
80
80
Serial.print (" ." );
81
81
delay (500 );
82
82
}
You can’t perform that action at this time.
0 commit comments