We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a825b4c commit 3ca168cCopy full SHA for 3ca168c
examples/AP_SimpleWebServer/AP_SimpleWebServer.ino
@@ -99,6 +99,7 @@ void loop() {
99
Serial.println("new client"); // print a message out the serial port
100
String currentLine = ""; // make a String to hold incoming data from the client
101
while (client.connected()) { // loop while the client's connected
102
+ delayMicroseconds(10); // This is required for the Arduino Nano RP2040 Connect - otherwise it will loop so fast that SPI will never be served.
103
if (client.available()) { // if there's bytes to read from the client,
104
char c = client.read(); // read a byte, then
105
Serial.write(c); // print it out the serial monitor
0 commit comments