You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is easy - using the WiFiClient.ino example with thingspeak.com - my sensor would only post 4 readings then stop. After putting a client.stop(); right after Serial.println("closing connection"); it now works.
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
String line = client.readStringUntil('\r');
Serial.print(line);
}