File tree 4 files changed +4
-4
lines changed
Provisioning_WiFiWebServer
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ void loop() {
103
103
if (client) {
104
104
Serial.println (" new client" );
105
105
// an http request ends with a blank line
106
- boolean currentLineIsBlank = true ;
106
+ bool currentLineIsBlank = true ;
107
107
while (client.connected ()) {
108
108
if (client.available ()) {
109
109
char c = client.read ();
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ void loop() {
99
99
if (client) {
100
100
Serial.println (" new client" );
101
101
// an http request ends with a blank line
102
- boolean currentLineIsBlank = true ;
102
+ bool currentLineIsBlank = true ;
103
103
while (client.connected ()) {
104
104
if (client.available ()) {
105
105
char c = client.read ();
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ int status = WL_IDLE_STATUS;
33
33
34
34
WiFiServer server (23 );
35
35
36
- boolean alreadyConnected = false ; // whether or not the client was connected previously
36
+ bool alreadyConnected = false ; // whether or not the client was connected previously
37
37
38
38
void setup () {
39
39
// Initialize serial and wait for port to open:
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ void loop() {
68
68
if (client) {
69
69
Serial.println (" new client" );
70
70
// an http request ends with a blank line
71
- boolean currentLineIsBlank = true ;
71
+ bool currentLineIsBlank = true ;
72
72
while (client.connected ()) {
73
73
if (client.available ()) {
74
74
char c = client.read ();
You can’t perform that action at this time.
0 commit comments