Миграция с OpenWeatherMap на OpenMeteo в связи с отключением бесплатного API с 26...
[weathermon.git] / weather_screen / weather_types.h
1 typedef struct { // For current Day and Day 1, 2, 3, etc
2   int      dt;
3   float    temp;
4   float    feels_like;
5   float    pressure;
6   float    humidity;
7   float    wind_speed;
8   float    wind_deg;
9   float    precip;
10   int      wmo;
11 } WeatherRecord;
12
13 WeatherRecord CurrentWeather;
14
15 #define MaxHourlyFC 48
16 WeatherRecord HourlyForecasts[MaxHourlyFC];
17