Skip to content

Wrong documentation of WiFiServer::write #5166

Closed
@UlliBien

Description

@UlliBien

In https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/server-class.html write() points to https://www.arduino.cc/en/Reference/WiFiServerWrite. There is written:

Write data to all the clients connected to a server.

That is not true for this library. The method is not implemented:
size_t WiFiServer::write(const uint8_t *buffer, size_t size) { // write to all clients // not implemented (void) buffer; (void) size; return 0; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions