با سلام
داخل لوپ دوم این کدها رو قرار دادم ولی ایراد میگیره
لطفأ راهنمایی بفرمایید
با تشکر
کد HTML:void loop() { // Check if a client has connected WiFiClient client = server.available(); if (!client) { return; } // Wait until the client sends some data Serial.println("new client"); while(!client.available()){ delay(50); } // Read the first line of the request String req = client.readStringUntil('\r'); Serial.println(req); client.flush(); delay(200); }
![]()