Post topics, source code that relate to the Arduino Platform

User avatar
By feveran
#64067 How to perform client read in softap mode?

Code: Select all while(!client.available()){
    delay(1);
  }
   
  // Read the first line of the request
  String request = client.readStringUntil('\r');