#ifndef __WEATHER_H__ #define __WEATHER_H__ #include int8_t weather_type(); int8_t weather_status(); Weather* weather_data_now(); DailyForecast* weather_data_daily(); void weather_exec(int status = 0); void weather_stop(); #endif