/socket.io-client

A socket.io-client implementation for ESP8266 and Arduino

Primary LanguageC++

socket.io-client

Install

This library uses lstdc++!!

To compile you have to add a reference to the linker. To do so edit platform.txt in $ARDUINO_IDE/hardware/esp8266com/esp8266 and add '-lstdc++' to the line

compiler.c.elf.libs= ...

(see http://stackoverflow.com/questions/33450946/esp8266-for-arduino-ide-xtensa-lx106-elf-gcc-and-stdmap-linking-error)

Add library

Best thing is to use the Arduino Library Manager.

  • Go to Sketch > Include Library > Manage Libraries.
  • Install WebSockets by Markus Sattler
  • Install SocketIoClient
  • Select Sketch > Include Library > SocketIoClient

Functions

SocketIoClient::begin(host[, port, path])

open connection to socket.io server.

Parameter

host url to socket.io server port port to connect on. Defaults to 80 or 443 (SSL) path path to connect to on server. Defaults to "/socket.io-client/?transport=websocket"

Example
socket.begin("my.socket-io.server", 443, "/socket.io/?transport=websocket");

SocketIoClient::on(event, callback)

binds a function to an event.

Parameter

event name of the event to bind to callback callback function to call when the event is triggered Function signature must be

void (const char * payload, size_t length)
Example
void event(const char * payload, size_t length) {
	//do stuff
}
socket.on("event", event);

SocketIoClient::emit(event, payload)

emits an event to the server.

Parameter

event name of the event to be emitted payload string of the payload to be sent with the event. Plain strings should be encapsulated in quotes.

Example
socket.emit("plainString", "\"this is a plain string\"");
socket.emit("jsonObject", "{foo: \"bar\"}");

SocketIoClient::loop()

processes the websocket. Should be called in Arduino main loop.

Misc

To go along with the socket.io-client implementation of socket.io the connect event is triggered upon successfully opened connection to server. To utilize simply add socket.on("connect", handler)

Example

see Example

contribution

Based on the great work of Links2004 / arduinoWebSockets.