Миграция с OpenWeatherMap на OpenMeteo в связи с отключением бесплатного API с 26...
[weathermon.git] / weather_screen / weather_types.h
index 6a49dff06500fb1151aa528cf120902aa6a44817..bdf869b689ada61dd31fe43ac187e35ad2fc7132 100644 (file)
@@ -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];