24-06-2023, 01:16
Werk,
Is this what you need?
-------------------------------------------------------------
// OpenWeather Forecast Data Structure
// -------------------------------------------------------------------
typedef struct
{
uint32_t dt;
int16_t Temp;
uint8_t Humidity;
float WindSpeed;
int16_t WindDir;
char Icon[4];
} ForecastData;
ForecastData Forecast_Rec[4];
Is this what you need?
-------------------------------------------------------------
// OpenWeather Forecast Data Structure
// -------------------------------------------------------------------
typedef struct
{
uint32_t dt;
int16_t Temp;
uint8_t Humidity;
float WindSpeed;
int16_t WindDir;
char Icon[4];
} ForecastData;
ForecastData Forecast_Rec[4];

