Part 1 of our ECE 4180 Final Project

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

Committer:
mohit1234
Date:
Fri May 01 18:07:34 2015 +0000
Revision:
0:9fa2874be5e4

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mohit1234 0:9fa2874be5e4 1 #include <string>
mohit1234 0:9fa2874be5e4 2
mohit1234 0:9fa2874be5e4 3 typedef struct weatherInfo {
mohit1234 0:9fa2874be5e4 4 std::string zipcode;
mohit1234 0:9fa2874be5e4 5 double tempC;
mohit1234 0:9fa2874be5e4 6 double tempF;
mohit1234 0:9fa2874be5e4 7 std::string condition;
mohit1234 0:9fa2874be5e4 8 double clouds;
mohit1234 0:9fa2874be5e4 9 double windSpeedKm;
mohit1234 0:9fa2874be5e4 10 double windSpeedMi;
mohit1234 0:9fa2874be5e4 11 } weatherInfo;
mohit1234 0:9fa2874be5e4 12
mohit1234 0:9fa2874be5e4 13 weatherInfo getWeatherInfo();