ArduinoWebsockets icon indicating copy to clipboard operation
ArduinoWebsockets copied to clipboard

A library for writing modern websockets applications with Arduino (ESP8266 and ESP32)

Results 60 ArduinoWebsockets issues
Sort by recently updated
recently updated
newest added

I have somewhat huge messages passing trough a message bus, in this case it was around 200 kB. Without any modification the board segfaults trying to allocate memory. I tried...

Your library looks great. It seems to be more updated than https://github.com/PaulStoffregen/ArduinoWebsocketClient I am hoping to use Websocket through the wizen module on a teensy 3.2 (Arduino compatible micro controller)....

enhancement

Currently there is a lot of info in the TinyWebsockets [Wiki](https://github.com/gilmaimon/TinyWebsockets/wiki) but no one seems to arrive there. 1. The wiki should be moved/copied to this project as it is...

enhancement

I experienced random disconnects from my ESP8266 Websocket Client. The websocket server is uvicorn 0.15.0 and i compared the debug logs from uvicorn with the crashes from the ESP. Then...

**Describe the bug** error: expected ')' before '*' token WebsocketsServer(network::TcpServer* server = new WSDefaultTcpServer); error: 'TcpServer' in namespace 'websockets::network' does not name a type network::TcpServer* _server; **To Reproduce** Steps to...

**Describe the bug** Based on #75 and #95 it appears there is no way to reconnect a WebSocket after connection is lost and restored. Does anyone have a workaround/solution for...

Handshake would fail due to certificate being invalid on ESP32 if no validation certificate was set prior to connecting. It now connect successfully and warn the user with: start_ssl_client(): WARNING:...

I am using a Lolin Nodemcu and when running the code, sometimes the websocket client connects and then disconnects inmediately. When this happens I restart the nodemcu and then it...

Hi. Please help me understand why I am getting this error message. The hardware is an ESP32. "Compilation error: 'WebsocketsClient' does not name a type" ` #include #include const char*...

**Describe the bug** I'm not sure why this error occurs, because I can connect to my websocket in postman, but there is no way to connect to my websocket in...