Wifi Pressure Sensor

Dependencies:   HTTPClient MPL3115A2 NTPClient TMP102 USBDevice cc3000_hostdriver_mbedsocket mbed

Committer:
SolderSplashLabs
Date:
Mon Nov 04 19:55:00 2013 +0000
Revision:
0:0bce3a738bcb
Child:
2:8f5776c287c5
Test Project, USB CDC and CC3000 Library

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 0:0bce3a738bcb 6 void TcpClientTest ( void );
SolderSplashLabs 0:0bce3a738bcb 7 void TcpServerTest ( void );
SolderSplashLabs 0:0bce3a738bcb 8 void XivelySimpleTest ( void );
SolderSplashLabs 0:0bce3a738bcb 9
SolderSplashLabs 0:0bce3a738bcb 10 extern const char *ECHO_SERVER_ADDRESS;
SolderSplashLabs 0:0bce3a738bcb 11 extern const int ECHO_SERVER_PORT_TCP = 80;
SolderSplashLabs 0:0bce3a738bcb 12 extern char *hello;
SolderSplashLabs 0:0bce3a738bcb 13
SolderSplashLabs 0:0bce3a738bcb 14 #endif