Wifi Pressure Sensor

Dependencies:   HTTPClient MPL3115A2 NTPClient TMP102 USBDevice cc3000_hostdriver_mbedsocket mbed

Committer:
markirwin
Date:
Wed Jun 18 04:33:59 2014 +0000
Revision:
11:8a3bc0e3255d
Parent:
2:8f5776c287c5
Added the TempTest to the console to allow debugging

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SolderSplashLabs 0:0bce3a738bcb 1 #ifndef TCPTESTS_H
SolderSplashLabs 0:0bce3a738bcb 2 #define TCPTESTS_H
SolderSplashLabs 0:0bce3a738bcb 3
SolderSplashLabs 0:0bce3a738bcb 4 void HttpClientTest ( void );
SolderSplashLabs 0:0bce3a738bcb 5 void WebSocketTest ( void );
SolderSplashLabs 2:8f5776c287c5 6 void WebSocketReadTest ( void );
SolderSplashLabs 0:0bce3a738bcb 7 void TcpClientTest ( void );
SolderSplashLabs 0:0bce3a738bcb 8 void TcpServerTest ( void );
SolderSplashLabs 0:0bce3a738bcb 9 void XivelySimpleTest ( void );
markirwin 11:8a3bc0e3255d 10 void TempTest ( void );
SolderSplashLabs 0:0bce3a738bcb 11
SolderSplashLabs 0:0bce3a738bcb 12 extern const char *ECHO_SERVER_ADDRESS;
SolderSplashLabs 0:0bce3a738bcb 13 extern const int ECHO_SERVER_PORT_TCP = 80;
SolderSplashLabs 0:0bce3a738bcb 14 extern char *hello;
SolderSplashLabs 0:0bce3a738bcb 15
SolderSplashLabs 0:0bce3a738bcb 16 #endif