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:
@ -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);
|
||||
|
Reference in New Issue
Block a user