Hi all,
We are currently trying to make a project with http. The board we used is Arduino UNO WiFi REV 2 and MKR WIFI 1010. And we have received the msg sent from the server as following.
As indicated in the red triangular, what could have happened there? Is that some problem on the memory storage?
Following is the code for loop section.
void loop() {
// if there are incoming bytes available
// from the server, read them and print them:
while (client.available()) {char c = client.read();
Serial.print(c);
}while(!timeClient.update()) {
timeClient.forceUpdate();
}
}
BRs,
YIL