1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Remove unused rx_buffer_size argument from WebServer constructor

This commit is contained in:
Ivan Grokhotkov
2015-01-08 00:39:46 +03:00
parent 661c414c2a
commit af99a3e388
3 changed files with 4 additions and 7 deletions

View File

@ -13,9 +13,8 @@ const char* ssid = "your-ssid";
const char* password = "your-password";
// Create an instance of the server
// specify the port to listen on (first argument)
// and the receive buffer size (second argument)
WiFiServer server(80, 2048);
// specify the port to listen on as an argument
WiFiServer server(80);
void setup() {
Serial.begin(115200);