Files
jcalendar/include/weather.h
2025-02-25 17:52:00 +08:00

13 lines
242 B
C

#ifndef __WEATHER_H__
#define __WEATHER_H__
#include <API.hpp>
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