first commit

This commit is contained in:
Jérôme Delacotte
2025-03-06 11:15:32 +01:00
commit 7b30d6e298
5276 changed files with 2108927 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
#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 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_ */