chore: migrate project into clean repository

This commit is contained in:
yuuux
2026-08-13 16:50:52 +08:00
commit d1d25a09e7
27405 changed files with 9422808 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef __LISA_UI_WEATHER_H__
#define __LISA_UI_WEATHER_H__
#include "lvgl.h"
lv_obj_t *lisa_ui_weather_create(lv_obj_t *parent);
int lisa_ui_weather_location_set(lv_obj_t *obj, const char *location);
int lisa_ui_weather_date_set(lv_obj_t *obj, const char *date);
int lisa_ui_weather_icon_set(lv_obj_t *obj, const char *icon_url);
int lisa_ui_weather_temp_real_set(lv_obj_t *obj, const char *temp_real);
int lisa_ui_weather_temp_range_set(lv_obj_t *obj, const char *temp_range);
int lisa_ui_weather_description_set(lv_obj_t *obj, const char *weather_description);
#endif