ArduinoWebsocketClient
ArduinoWebsocketClient copied to clipboard
Websocket client for Arduino
Hi, I have a java websocket server with multiple websocket endpoints, each one with a specific location in LAN. example: http://[my local ip]:[port]/myJavaApp/webSocket1 http://[my local ip]:[port]/myJavaApp/webSocket2 http://[my local ip]:[port]/myJavaApp/webSocket3 etc.....
How can i use it with GPRS Shield such as SIM900 ?
These simple changes allow for compatibility with most 32 bit boards. In the string table, pointers need to be read with pgm_read_ptr(), since pgm_read_word() is fixed at 16 bits. In...
client.connect() function in echo example was not functioning properly earlier. but did suddenly. still sometimes it connects, sometimes it doesn't cant figure out why. PS: i am using the ide...
I'm using this add-on for the Arduino IDE: https://github.com/esp8266/Arduino since the ESP8266 is an absolute jewel for IoT devices. But I'm getting a ton of warnings and the app crashes...
Using Arduino 1.6.0 and it won't compile. Error log below: Arduino: 1.6.0 (Windows 7), Board: "Arduino Uno" Build options changed, rebuilding all C:\Users\Matt\Documents\Arduino\libraries\ArduinoWebsocketClient-master\WebSocketClient.cpp:30:1: error: 'prog_char' does not name a type...
While using your library I've never been able to get a successful response from the echo.websocket.org server. So, I added a Serial.print on the handshake section to debug the error...
I thought we could make this official, so I started a pull request. So, the reliance on the WiFlySerial module (here: https://github.com/perezd/arduino-wifly-serial) makes our WiFlyClient shim _very_ small. Outstanding concerns:...
This seems to work (with gevent-websocket server at least) updating support from Hixie75 to Hixie76. Note that auth values are hard-coded, using the values from the draft. Hybi support is...
Hello Krohling, Thanks for sharing your code, it's very helpfull !! However I've a issue when I tried to connect the Arduino to my own websocket echo server: nothing append....