Skip to content

Commit 05c34e2

Browse files
committed
Add client.setNoDelay(1); to speed up wifi (trick esp8266/Arduino#1853)
1 parent 22c04a1 commit 05c34e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WifiModule/WifiModule.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void loop()
7777
//scheduler.execute();
7878
sense_data.run();
7979
WiFiClient client = server.available(); // try to get client
80-
80+
client.setNoDelay(1);
8181
if(got_config)
8282
{
8383
got_config = false;

0 commit comments

Comments
 (0)