We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28df8dc commit 6ab79f0Copy full SHA for 6ab79f0
WiFi/examples/WifiCosmClient/WifiCosmClient.ino
@@ -81,7 +81,7 @@ void loop() {
81
// if there's incoming data from the net connection.
82
// send it out the serial port. This is for debugging
83
// purposes only:
84
- if (client.available()) {
+ while (client.available()) {
85
char c = client.read();
86
Serial.print(c);
87
}
WiFi/examples/WifiCosmClientString/WifiCosmClientString.ino
@@ -95,7 +95,7 @@ void loop() {
95
96
97
98
99
100
101
0 commit comments