Thinger.io Client Library for ARM mbed platform. This is a generic library that provides a base class that can be used to other develop hardware specific libraries.

Fork of ThingerClient by Alvaro Luis Bustamante

Revision:
3:58e0153dbb37
Parent:
2:8c6f158b95c3
--- a/ThingerClient.h	Fri Dec 25 18:13:38 2015 +0000
+++ b/ThingerClient.h	Fri Dec 25 18:21:02 2015 +0000
@@ -71,22 +71,22 @@
     */
     virtual size_t  socket_read(char* buffer, size_t size) = 0;
     
-    ** Write all specified bytes from buffer to socket
+    /** Write all specified bytes from buffer to socket
     * \return the number of bytes written
     */
     virtual size_t  socket_write(char* buffer, size_t size) = 0;
     
-    ** Check the total available data in the socket
+    /** Check the total available data in the socket
     * \return Ideally, the number of bytes available in the socket, or any positive number if there is pending data. 0 Otherwise.
     */
     virtual size_t  socket_available() = 0;
     
-    ** Initialize the network interface, i.e., initialize ethernet interface, get ip address, etc.
+    /** Initialize the network interface, i.e., initialize ethernet interface, get ip address, etc.
     * \return the number of bytes read
     */
     virtual bool    connect_network() = 0;
     
-    ** Check if the network is still connected
+    /** Check if the network is still connected
     * \return true if the network is connected, or false ortherwise
     */
     virtual bool    network_connected() = 0;