Websocket communication

Dependents:   Ethernet

Revision:
0:c10e8dc4cffd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebSocket_COMM.h	Sun Apr 03 15:44:52 2016 +0000
@@ -0,0 +1,19 @@
+#ifndef WS_COMM_H
+#define WS_COMM_H
+
+#include "Websocket.h"
+#include <string>
+
+class WebSocket_Communication
+{
+    public:
+        WebSocket_Communication(string url);
+        void initWebSocket();
+        void sendDataWebSocket(char *data);
+        
+    private : 
+        Websocket *webSocket;
+        char *url;
+};
+
+#endif
\ No newline at end of file