projects
/
weathermon.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'refs/remotes/origin/master'
[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