Demo apps : receive a string from a client and respond with a different string, TCP/IP client

Dependencies:   CC3000_Hostdriver mbed

Note

Avnet Wi-Go board

For those using Avnet's Wi-Go board, there also is a full IOT demo available at
http://mbed.org/users/frankvnk/code/Wi-Go_IOT_Demo/

New cc3000 HostDriver release

For new projects, use cc3000 mbed socket compatible API driver and examples

Info

Demo application for testing the wireless CC3000 module on the Wi-Go board.

Warning

The on-board Firmware must be updated to mbed enable a Wi-Go system.
Goto the Component page to get the FirmwareUpdate tool (scroll down to the FirmwareUpdate topic).

Setup

Note

It is recommended to run initial tests WITHOUT security settings.

  • Setup a wireless router with a non-secured wireless connection using the wireless settings stored in doTCPIP.h.
  • Alternatively, these settings can be altered to match the wireless router settings (SSID, security and static IP parameters).
    When the unsecure test works, AP_KEY and AP_SECURITY can be enabled and set to your preferred values.
    Valid values for AP_SECURITY are : NONE, WEP, WPA and WPA2
// Modify the following settings as necessary for your Wi-Fi Network setup:
#define IP_ALLOC_METHOD USE_DHCP        // for DHCP assigned IP address   
//#define IP_ALLOC_METHOD USE_STATIC_IP // for static IP address

// Default SSID Settings
//#define AP_KEY         "thisthis" 
//#define AP_SECURITY    WPA2          // WPA2 must be enabled for use with iPhone or Android phone hotspot!

#define SSID           "iot"
#define STATIC_IP_OCT1 192
#define STATIC_IP_OCT2 168
#define STATIC_IP_OCT3 0
#define STATIC_IP_OCT4 10

#define STATIC_GW_OCT4 1       // Static Gateway address  = STATIC_IP_OCT1.STATIC_IP_OCT2.STATIC_IP_OCT3.STATIC_GW_OCT4


  • Download Python 2.7 from http://www.python.org/download/
    Install it on a computer able to make a wireless connection to the router we previously set up.
  • Make a wireless connection between your computer and the router.
  • Download this Python script to the Python2.7 folder (credit : Jim Carver from Avnet).
  • Import the CC3000_Simple_Socket code into your compiler and save it to the Wi-Go board.

Running the application for the first time

  • Open a terminal program (eg: TeraTerm) and connect to the Wi-Go module (serial speed : 115200 baud).
  • Press the reset button on the Wi-Go module.
  • Following startup screen will appear (the dots in the MAC address will show your CC3000's real MAC address):
CC3000 Python demo.


Wi-Go MAC address ..:..:..:..:..:..

FTC        1
PP_version 3.3
SERV_PACK  1.11
DRV_VER    7.13.19
FW_VER     7.12.14

<0> Normal run. SmartConfig will
    start if no valid connection exists.
<1> Connect using fixed SSID : iot
<2> TCP/IP client:
    Discover public IP address.
    Get time and date from a daytime server in Italy.
<9> SmartConfig.


  • For the initial test, select option <1> (Connect using fixed SSID : ...).
  • If all goes well, the following screen is shown (the IP address and mDNS status can be different):
Starting TCP/IP Server
RunSmartConfig= 0
Attempting SSID Connection
waiting
waiting
waiting
mDNS Status= 31be
Connected

*** Wi-Go board DHCP assigned IP Address = 192.168.0.101
mDNS Status= 3dbe
Server waiting for connection to Python


  • On the computer where you installed Python2.7:
    • Make sure the wireless connection between your computer and the router is active.
    • Open a DOS prompt and go to the folder where Python2.7 is installed.
    • Type following command :
python wigo_test.py -a 192.168.0.101 -p 15000


Note

Don't forget to replace the IP address with the real IP address assigned by DHCP to the CC3000 module.

If a connection is established, the DOS window will show

-----------------
run tcp client
-----------------
connected to  remote ip=192.168.0.101 remote port=15000
Press ENTER ....


In return the Wi-Go board will send following info to the serial port:

Connected


When we press Enter in the DOS window, the Wi-Go board will send following info to the serial port:

Input = Hello Wi-Go
status= 13
Done, press any key to repeat


And the DOS window will show:

recv from :  data:  Hello Python


Application option <2> : TCP/IP client

This is a simple demo to discover a public IP address and get the date and time from a daytime server (port 13).

Using the application's options <0> or <9>

Options <0> (Normal run) and <9> (SmartConfig) are very similar.
They both allow us to connect the CC3000 to another wireless network, without changing the pre-configured settings stored in doTCPIP.h.

As mentioned before, option <0> will automatically start SmartConfig if no valid connection exists (First Time Config),
but if the CC3000 was previously configured using SmartConfig, it will automatically connect to the wireless network.

Option <9> can be used to switch to another wireless connection.


See TI's pages on how to use the SmartConfig tool:

The Prefix can be set in cc3000.cpp. Do not change the default value for the prefix (TTT) when you want to use TI's Smartconfig application.

char aucCC3000_prefix[] = {'T', 'T', 'T'};      // Smart Config Prefix

The Device Name mentioned on the SmartConfig page is declared in doTCPIP.cpp

char DevServname[] = "CC3000";
Committer:
frankvnk
Date:
Thu Oct 17 18:10:26 2013 +0000
Revision:
7:f13025166308
Parent:
6:4fb3776a9b92
HostDriver update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
frankvnk 0:a8e46e27d041 1 /****************************************************************************
frankvnk 0:a8e46e27d041 2 *
frankvnk 0:a8e46e27d041 3 * doTCPIP.h - CC3000 TCP/IP
frankvnk 0:a8e46e27d041 4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
frankvnk 0:a8e46e27d041 5 *
frankvnk 0:a8e46e27d041 6 * Redistribution and use in source and binary forms, with or without
frankvnk 0:a8e46e27d041 7 * modification, are permitted provided that the following conditions
frankvnk 0:a8e46e27d041 8 * are met:
frankvnk 0:a8e46e27d041 9 *
frankvnk 0:a8e46e27d041 10 * Redistributions of source code must retain the above copyright
frankvnk 0:a8e46e27d041 11 * notice, this list of conditions and the following disclaimer.
frankvnk 0:a8e46e27d041 12 *
frankvnk 0:a8e46e27d041 13 * Redistributions in binary form must reproduce the above copyright
frankvnk 0:a8e46e27d041 14 * notice, this list of conditions and the following disclaimer in the
frankvnk 0:a8e46e27d041 15 * documentation and/or other materials provided with the
frankvnk 0:a8e46e27d041 16 * distribution.
frankvnk 0:a8e46e27d041 17 *
frankvnk 0:a8e46e27d041 18 * Neither the name of Texas Instruments Incorporated nor the names of
frankvnk 0:a8e46e27d041 19 * its contributors may be used to endorse or promote products derived
frankvnk 0:a8e46e27d041 20 * from this software without specific prior written permission.
frankvnk 0:a8e46e27d041 21 *
frankvnk 0:a8e46e27d041 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
frankvnk 0:a8e46e27d041 23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
frankvnk 0:a8e46e27d041 24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
frankvnk 0:a8e46e27d041 25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
frankvnk 0:a8e46e27d041 26 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
frankvnk 0:a8e46e27d041 27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
frankvnk 0:a8e46e27d041 28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
frankvnk 0:a8e46e27d041 29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
frankvnk 0:a8e46e27d041 30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
frankvnk 0:a8e46e27d041 31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
frankvnk 0:a8e46e27d041 32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
frankvnk 0:a8e46e27d041 33 *
frankvnk 0:a8e46e27d041 34 *****************************************************************************/
frankvnk 0:a8e46e27d041 35
frankvnk 0:a8e46e27d041 36 #ifndef DOTCPIP_H
frankvnk 0:a8e46e27d041 37 #define DOTCPIP_H
frankvnk 0:a8e46e27d041 38
frankvnk 0:a8e46e27d041 39 #include "cc3000.h"
frankvnk 0:a8e46e27d041 40
frankvnk 0:a8e46e27d041 41 /** TCP/IP Functions
frankvnk 0:a8e46e27d041 42 *
frankvnk 0:a8e46e27d041 43 */
frankvnk 0:a8e46e27d041 44 #ifdef __cplusplus
frankvnk 0:a8e46e27d041 45 extern "C" {
frankvnk 0:a8e46e27d041 46 #endif
frankvnk 0:a8e46e27d041 47
frankvnk 0:a8e46e27d041 48 #ifndef FALSE
frankvnk 0:a8e46e27d041 49 #define FALSE 0
frankvnk 0:a8e46e27d041 50 #endif
frankvnk 0:a8e46e27d041 51
frankvnk 0:a8e46e27d041 52 #ifndef TRUE
frankvnk 0:a8e46e27d041 53 #define TRUE 1
frankvnk 0:a8e46e27d041 54 #endif
frankvnk 0:a8e46e27d041 55
frankvnk 0:a8e46e27d041 56 #define SMART_CONFIG_SET 0x55
frankvnk 6:4fb3776a9b92 57 // SMTP Specific
frankvnk 6:4fb3776a9b92 58 #define HTTP_PORT 80
frankvnk 6:4fb3776a9b92 59 #define TCPIP_PORT 15000
frankvnk 0:a8e46e27d041 60
frankvnk 0:a8e46e27d041 61 #define USE_DHCP 1
frankvnk 0:a8e46e27d041 62 #define USE_STATIC_IP 2
frankvnk 0:a8e46e27d041 63
frankvnk 0:a8e46e27d041 64 #define NONE 0
frankvnk 0:a8e46e27d041 65 #define WEP 1
frankvnk 0:a8e46e27d041 66 #define WPA 2
frankvnk 0:a8e46e27d041 67 #define WPA2 3
frankvnk 0:a8e46e27d041 68
frankvnk 0:a8e46e27d041 69 // Modify the following settings as necessary for your Wi-Fi Network setup:
frankvnk 0:a8e46e27d041 70 #define IP_ALLOC_METHOD USE_DHCP // for DHCP assigned IP address
frankvnk 0:a8e46e27d041 71 //#define IP_ALLOC_METHOD USE_STATIC_IP // for static IP address
frankvnk 0:a8e46e27d041 72
frankvnk 0:a8e46e27d041 73 // Default SSID Settings
frankvnk 3:63bff0590657 74 //#define AP_KEY "thisthis"
frankvnk 3:63bff0590657 75 //#define AP_SECURITY WPA2 // WPA2 must be enabled for use with iPhone or Android phone hotspot!
frankvnk 0:a8e46e27d041 76 #define SSID "iot"
frankvnk 6:4fb3776a9b92 77 #define AP_SECURITY NONE // no security but will connect quicker!
frankvnk 0:a8e46e27d041 78 #define STATIC_IP_OCT1 192
frankvnk 0:a8e46e27d041 79 #define STATIC_IP_OCT2 168
frankvnk 0:a8e46e27d041 80 #define STATIC_IP_OCT3 0
frankvnk 0:a8e46e27d041 81 #define STATIC_IP_OCT4 10
frankvnk 0:a8e46e27d041 82
frankvnk 1:32d1ef95eceb 83 #define STATIC_GW_OCT4 1 // Static Gateway address = STATIC_IP_OCT1.STATIC_IP_OCT2.STATIC_IP_OCT3.STATIC_GW_OCT4
frankvnk 1:32d1ef95eceb 84
frankvnk 0:a8e46e27d041 85 #define REQ_BUFFER_SIZE 400
frankvnk 0:a8e46e27d041 86
frankvnk 6:4fb3776a9b92 87 // DynDNS server. From which to take public IP address.
frankvnk 6:4fb3776a9b92 88 // dyndns: 91.198.22.70
frankvnk 6:4fb3776a9b92 89 #define SRV_IP_OCT1 91
frankvnk 6:4fb3776a9b92 90 #define SRV_IP_OCT2 198
frankvnk 6:4fb3776a9b92 91 #define SRV_IP_OCT3 22
frankvnk 6:4fb3776a9b92 92 #define SRV_IP_OCT4 70
frankvnk 6:4fb3776a9b92 93 #define SRV_PORT 80
frankvnk 6:4fb3776a9b92 94
frankvnk 6:4fb3776a9b92 95 // Italian daytime server responding:
frankvnk 6:4fb3776a9b92 96 // 29 AUG 2013 05:24:02 CEST
frankvnk 6:4fb3776a9b92 97 // tempo.ien.it [193.204.114.105]
frankvnk 6:4fb3776a9b92 98 #define TMSRV_IP_OCT1 193
frankvnk 6:4fb3776a9b92 99 #define TMSRV_IP_OCT2 204
frankvnk 6:4fb3776a9b92 100 #define TMSRV_IP_OCT3 114
frankvnk 6:4fb3776a9b92 101 #define TMSRV_IP_OCT4 105
frankvnk 6:4fb3776a9b92 102 #define TMSRV_PORT 13
frankvnk 6:4fb3776a9b92 103
frankvnk 0:a8e46e27d041 104 typedef struct {
frankvnk 0:a8e46e27d041 105 unsigned char FTC; // First time config performed
frankvnk 0:a8e46e27d041 106 unsigned char PP_version[2]; // Patch Programmer version
frankvnk 0:a8e46e27d041 107 unsigned char SERV_PACK[2]; // Service Pack Version
frankvnk 0:a8e46e27d041 108 unsigned char DRV_VER[3]; // Driver Version
frankvnk 0:a8e46e27d041 109 unsigned char FW_VER[3]; // Firmware Version
frankvnk 0:a8e46e27d041 110 unsigned char validCIK; // CIK[] is valid (Client Interface Key)
frankvnk 0:a8e46e27d041 111 unsigned char CIK[40];
frankvnk 0:a8e46e27d041 112 } userFS_t;
frankvnk 0:a8e46e27d041 113
frankvnk 0:a8e46e27d041 114 extern userFS_t userFS;
frankvnk 0:a8e46e27d041 115
frankvnk 3:63bff0590657 116 extern volatile unsigned long ulSmartConfigFinished,ulCC3000DHCP, OkToDoShutDown, ulCC3000DHCP_configured;
frankvnk 6:4fb3776a9b92 117 extern int server_running;
frankvnk 0:a8e46e27d041 118 extern volatile unsigned char newData;
frankvnk 0:a8e46e27d041 119 extern unsigned char ForceFixedSSID;
frankvnk 0:a8e46e27d041 120 extern char runSmartConfig;
frankvnk 0:a8e46e27d041 121 extern char requestBuffer[];
frankvnk 0:a8e46e27d041 122 extern unsigned char myMAC[8];
frankvnk 0:a8e46e27d041 123 extern unsigned char SmartConfigProfilestored;
frankvnk 6:4fb3776a9b92 124 extern int do_mDNS;
frankvnk 6:4fb3776a9b92 125 extern int HsecondFlag;
frankvnk 6:4fb3776a9b92 126 extern unsigned int seconds;
frankvnk 6:4fb3776a9b92 127 extern volatile int ms5Flag;
frankvnk 0:a8e46e27d041 128
frankvnk 0:a8e46e27d041 129 extern void StartSmartConfig(void);
frankvnk 0:a8e46e27d041 130
frankvnk 0:a8e46e27d041 131
frankvnk 6:4fb3776a9b92 132 //int sendTCPIP(int port);
frankvnk 0:a8e46e27d041 133 void sendPython(int port);
frankvnk 0:a8e46e27d041 134 void initTCPIP(void);
frankvnk 0:a8e46e27d041 135 void runTCPIPserver(void);
frankvnk 6:4fb3776a9b92 136 int getTCPIP( char a1, char a2, char a3, char a4, int port);
frankvnk 6:4fb3776a9b92 137 //void runTCPIPclient(int a1, int a2, int a3, int a4);
frankvnk 6:4fb3776a9b92 138 void runTCPIPclient(int a1, int a2, int a3, int a4, int port);
frankvnk 0:a8e46e27d041 139
frankvnk 0:a8e46e27d041 140 /** Checks if WiFi is still connected.
frankvnk 0:a8e46e27d041 141 * @param None
frankvnk 0:a8e46e27d041 142 * @return TRUE if connected, FALSE if not
frankvnk 0:a8e46e27d041 143 * @note If not associated with an AP for 5 consecutive retries, it will reset the board.
frankvnk 0:a8e46e27d041 144 */
frankvnk 0:a8e46e27d041 145 unsigned char checkWiFiConnected(void);
frankvnk 0:a8e46e27d041 146
frankvnk 0:a8e46e27d041 147 /** Print MAC address.
frankvnk 0:a8e46e27d041 148 * @param None
frankvnk 0:a8e46e27d041 149 * @return none
frankvnk 0:a8e46e27d041 150 */
frankvnk 0:a8e46e27d041 151 void print_mac(void);
frankvnk 0:a8e46e27d041 152
frankvnk 0:a8e46e27d041 153 /** First time configuration.
frankvnk 0:a8e46e27d041 154 * @param None
frankvnk 0:a8e46e27d041 155 * @return none
frankvnk 0:a8e46e27d041 156 */
frankvnk 0:a8e46e27d041 157 void do_FTC(void);
frankvnk 0:a8e46e27d041 158
frankvnk 0:a8e46e27d041 159 #ifdef __cplusplus
frankvnk 0:a8e46e27d041 160 }
frankvnk 0:a8e46e27d041 161 #endif // __cplusplus
frankvnk 0:a8e46e27d041 162
frankvnk 0:a8e46e27d041 163 #endif // DOTCPIP_H
frankvnk 2:13ced2cb5933 164