WiFi DipCortex / CC3000 Demo - Contains a menu driven set of tests to initalise and control the CC3000 radio. Also allowing you to test various TCP and UDP connections.

Dependencies:   NTPClient WebSocketClient cc3000_hostdriver_mbedsocket mbed HTTPClient

http://www.soldersplash.co.uk/products/wifi-dipcortex/

Please Note, this example uses the serial port so you will need an external RS232 TTL to USB adapter.

Revision:
3:d81f8a9f3733
Parent:
0:039d229f3d6b
Child:
4:4e5e094a81c0
diff -r 3adf4a0475d7 -r d81f8a9f3733 main.h
--- a/main.h	Tue Oct 08 00:03:54 2013 +0000
+++ b/main.h	Tue Oct 08 22:42:04 2013 +0000
@@ -2,6 +2,14 @@
 #ifndef MAIN_H
 #define MAIN_H
 
+typedef enum MENU_LEVEL
+{
+    MENU_TOP = 0,
+    MENU_CONNECTION,
+    MENU_TCP,
+    MENU_UDP    
+} MENU_LEVEL;
+
 extern cc3000 wifi;
 
 #endif