Part 1 of our ECE 4180 Final Project

Dependencies:   4DGL-uLCD-SE EthernetInterface MODSERIAL NTPClient mbed-rtos mbed

Revision:
0:9fa2874be5e4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/weather.h	Fri May 01 18:07:34 2015 +0000
@@ -0,0 +1,13 @@
+#include <string>
+
+typedef struct weatherInfo {
+    std::string zipcode;
+    double tempC;
+    double tempF;
+    std::string condition;
+    double clouds;
+    double windSpeedKm;
+    double windSpeedMi;
+} weatherInfo;
+
+weatherInfo getWeatherInfo();
\ No newline at end of file