Simple Demo that gets a webpage

Dependencies:   HTTPClient cc3000_hostdriver_mbedsocket mbed

Fork of EECS149_email_notifier by Antonio Iannopollo

Revision:
10:1804a9dbaee0
Parent:
9:f80b62b60b1c
Child:
11:e68fb69de2c6
--- a/main.cpp	Fri Oct 10 23:55:33 2014 +0000
+++ b/main.cpp	Tue Oct 14 21:20:53 2014 +0000
@@ -17,6 +17,26 @@
  /**
  *  \brief EECS149 demo
  *  \author Antonio Iannopollo
+ *
+ * This demo illustrate how to connect the mbed KL25Z platform to internet 
+ * thorugh the CC3000 wifi breakout board (http://www.adafruit.com/product/1469).
+ * Connections between the KL25Z and the CC3000 are made according to the 
+ * guide (https://learn.adafruit.com/adafruit-cc3000-wifi) -- KL25Z and arduino
+ * UNO are pin to pin compatible --
+ *
+ * This application will read a number from a remote text file and change the 
+ * color of the onboard LED from green to red if the number is >0, and vice 
+ * versa.
+ *
+ * The number in the remote file represents the number of unread emails with
+ * subject equal to [EECS 149/249] in Antonio's account.
+ * The remote text file is written by a server script 
+ * (https://github.com/ianno/eecs149_notifier).
+ *
+ * This application uses the following libraries:
+ * - cc3000_hostdriver_mbedsocket 
+ *   (http://developer.mbed.org/users/Kojto/code/cc3000_hostdriver_mbedsocket/)
+ * - HTTPClient (http://developer.mbed.org/users/donatien/code/HTTPClient/)
  */
  
 #include "mbed.h"
@@ -25,62 +45,72 @@
 
 #include "HTTPClient.h"
 
+#define MAIL_URL "http://www.eecs.berkeley.edu/~antonio/149_count.txt"
+
+
 using namespace mbed_cc3000;
 
-/* cc3000 module declaration specific for user's board. Check also init() */
-#if (MY_BOARD == WIGO)
-cc3000 wifi(PTA16, PTA13, PTD0, SPI(PTD2, PTD3, PTC5), "ssid", "key", WPA2, false);
+//KL25Z wifi connection
+//we need to define connection pins for:
+//- IRQ             (pin D3)
+//- Enable          (pin D5)
+//- SPI CS (pin D10) 
+//- SPI configuration:
+//  - MOSI (pin D11)
+//  - MISO (pin D12)
+//  - SCLK (pin D13)
+//plus wifi network SSID, password, security level and smart-configuration flag.
+cc3000 wifi(D3, D5, D10, SPI(D11, D12, D13), "antonio", "0123456789", WPA2, false);
+
+//setup the serial connection to the host machine (used to print debug info)
 Serial pc(USBTX, USBRX);
-#elif (MY_BOARD == WIFI_DIPCORTEX)
-cc3000 wifi(p28, p27, p30, SPI(p21, p14, p37), "ssid", "key", WPA2, false);
-Serial pc(UART_TX, UART_RX);
-#elif (MY_BOARD == MBED_BOARD_EXAMPLE)
-cc3000 wifi(p9, p10, p8, SPI(p5, p6, p7), "ssid", "key", WPA2, false);
-Serial pc(USBTX, USBRX);
-#else
 
-//KL25Z 149 connection
-cc3000 wifi(D3, D5, D10, SPI(D11, D12, D13), "antonio", "0123456789", WPA2, false);
-Serial pc(USBTX, USBRX);
-#endif
-
+//global vars
 HTTPClient http;
 char str[10];
 int num_emails;
 
+//directly control the green and red onboard LEDs
+//LEDs are internally pulled-up. To turn on a LED, set its pin to 0.
 DigitalOut led_red(LED_RED);
 DigitalOut led_green(LED_GREEN); 
 
-#define MAIL_URL "http://www.eecs.berkeley.edu/~antonio/149_count.txt"
 
-/**
- *  \brief EECS149 demo
- *  \param  none
- *  \return int
- */
 int main() {
-    init(); /* board dependent init */
-    pc.baud(115200);
     
+    //initially turn off both the leds.
+    //Blue LED will be always on because it shares the connection with the SPI clock
     led_red = 1;
     led_green = 1;
 
     printf("EECS149 email notifier. \r\n");
+    
     wifi.init();
     
     while(1) {
+        
+        //continuosly check connection status
+        //If not connected, try to set up a connection
         if(wifi.is_connected() == false) {
+            
+            //try to connect
             if (wifi.connect() == -1) {
                 printf("Failed to connect. Please verify connection details and try again. \r\n");
             } else {
                 printf("IP address: %s \r\n",wifi.getIPAddress());
+                
+                //once connected, turn green LED on and red LED off
                 led_red = 1;
                 led_green = 0;  
             }
         } else {
-            //GET mail data
+            //if the board is connected, fetch the remote file
+            
             printf("\r\nTrying to fetch mail info... \r\n");
+            
+            //GET remote file data
             int ret = http.get(MAIL_URL, str, 128);
+            //analyze ret code
             if (!ret) {
                 printf("Page fetched successfully - read %d characters \r\n", strlen(str));
                 printf("Result: %s \r\n", str);
@@ -88,18 +118,22 @@
                 num_emails = atoi(str);
                 
                 if(num_emails == 0) {
+                    //no unread emails, turn the green LED on and red LED off
                     led_red = 1;
                     led_green = 0;    
                 } else {
+                    //unread emails. Turn the green LED off and the red one on
                     led_red = 0;
                     led_green = 1;    
                 }
                 
                 
             } else {
+                //error fetching remote file
                 printf("Error - ret = %d - HTTP return code = %d \r\n", ret, http.getHTTPResponseCode());
             }
         }
+        //poll the remote file every 5 sec
         wait(5.0);
     }