You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
805 B
40 lines
805 B
#ifndef FORECAST_RECORD_H_
|
|
#define FORECAST_RECORD_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
typedef struct { // For current Day and Day 1, 2, 3, etc
|
|
int Dt;
|
|
String Period;
|
|
String Icon;
|
|
String Trend;
|
|
String Main0;
|
|
String Forecast0;
|
|
String Forecast1;
|
|
String Forecast2;
|
|
String Description;
|
|
String Time;
|
|
String Country;
|
|
float lat;
|
|
float lon;
|
|
float Temperature;
|
|
float Feelslike;
|
|
float Humidity;
|
|
float High;
|
|
float day;
|
|
float night;
|
|
float Low;
|
|
float Winddir;
|
|
float Windspeed;
|
|
float Rainfall;
|
|
float Snowfall;
|
|
float Pop;
|
|
float Pressure;
|
|
int Cloudcover;
|
|
int Visibility;
|
|
int Sunrise;
|
|
int Sunset;
|
|
int Timezone;
|
|
} Forecast_record_type;
|
|
|
|
#endif /* ifndef FORECAST_RECORD_H_ */
|
|
|