X-Git-Url: https://git.rvb.name/weathermon.git/blobdiff_plain/2f1fc2f95f9688b5ddb0252228b969eb37c54031..d563aba7f65b64c452a6e69af6dc92354422bec6:/weather_screen/weather_types.h diff --git a/weather_screen/weather_types.h b/weather_screen/weather_types.h index 6a49dff..bdf869b 100644 --- a/weather_screen/weather_types.h +++ b/weather_screen/weather_types.h @@ -1,26 +1,17 @@ typedef struct { // For current Day and Day 1, 2, 3, etc int dt; float temp; - float temp_min; - float temp_max; float feels_like; - float feels_like_min; - float feels_like_max; float pressure; float humidity; - float clouds; float wind_speed; float wind_deg; - float rain; - float snow; - String description; - String icon; + float precip; + int wmo; } WeatherRecord; WeatherRecord CurrentWeather; #define MaxHourlyFC 48 -#define MaxDailyFC 7 WeatherRecord HourlyForecasts[MaxHourlyFC]; -WeatherRecord DailyForecasts[MaxDailyFC];