Part 1 of our ECE 4180 Final Project

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

weather.h

Committer:
mohit1234
Date:
2015-05-01
Revision:
0:9fa2874be5e4

File content as of revision 0:9fa2874be5e4:

#include <string>

typedef struct weatherInfo {
    std::string zipcode;
    double tempC;
    double tempF;
    std::string condition;
    double clouds;
    double windSpeedKm;
    double windSpeedMi;
} weatherInfo;

weatherInfo getWeatherInfo();