ArduinoWebsockets
ArduinoWebsockets copied to clipboard
A library for writing modern websockets applications with Arduino (ESP8266 and ESP32)
**Describe the bug** Should be mamon? How does this even work? Should check this? Do you even code? **To Reproduce** Steps to reproduce the behavior. This should include: - The...
**Describe the bug** When running in client mode, small WebSocket messages sent from the server to the client that can be sent in one ethernet packet work fine. But when...
I have included the library using platform.io Library manager and ran into the compilation problem. Error message: In file included from .pio/libdeps/wifi_client/ArduinoWebsockets/src/tiny_websockets/internals/ws_common.hpp:35, from .pio/libdeps/wifi_client/ArduinoWebsockets/src/tiny_websockets/message.hpp:3, from .pio/libdeps/wifi_client/ArduinoWebsockets/src/ArduinoWebsockets.h:4, from src/wifi_client.cpp:6: .pio/libdeps/wifi_client/ArduinoWebsockets/src/tiny_websockets/network/esp32/esp32_tcp.hpp:12:10: fatal...
I do not think this is a real bug but it is also not a feature I would like to propose. Since I think the existing code should be changed...
I am developing a project where each time the connection is closed, I generate a new token and add the header to the client using the "addHeader" API. The problem...
hi i need to send a JSON object to a host. i was hopping i could use the `ArduionJson` library like : `serializeJson(doc,ws);` this is what i came up with...
hello if i wanted to close the connection and release the socket, witch one i should use? `end()` or `close()` ? thank you
Adding support for modifying headers for websocket connections. AddHeader already existed, but changing headers were not supported. Pull request adds setHeader, which is called with key/value of new header and...
Hello! I am having a similar issue to #101. I have the following board: https://www.adafruit.com/product/5477 and I am trying to connect to a secure web socket: found here https://websocket.org/tools/websocket-echo-server at...
**Describe the Bug** I am using your WebSocket Client library with the ESP32-WROOM-32D module to send sensor data to my Ionic application after reading it from the serial interface. The...