You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
329 B
C

#ifndef FACE_WEATHER_H
#define FACE_WEATHER_H
// TODO
struct faceWeatherData
{
//char hostname[64];
//int port;
char current_icon[4];
char current_description[20];
char location[20];
// current
int current_temp;
int today_min;
int today_max;
// forecast
};
void setupFaceWeather();
void loopFaceWeather();
#endif