/* * clock.h * * Created on: Apr 23, 2020 * Author: chris */ #ifndef COMPONENTS_CLOCK_CLOCK_H_ #define COMPONENTS_CLOCK_CLOCK_H_ #include #include #include #include #include #include #include "esp_event.h" typedef struct { char date_str[64]; char time_str[64]; } time_str_t; esp_err_t init_clock(); void get_time(time_str_t* res); #endif /* COMPONENTS_CLOCK_CLOCK_H_ */