Post topics, source code that relate to the Arduino Platform

User avatar
By martinayotte
#44860 Did you uncommented the Serial.print() to see what the server is answering you ?

Code: Select all  // 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); // Trying to avoid using serial
  }