mirror of
https://github.com/Xinyuan-LilyGO/TTGO_TWatch_Library.git
synced 2026-03-07 16:46:53 +01:00
14 lines
297 B
C++
14 lines
297 B
C++
#include "app_calendar.h"
|
|
#include "Arduino.h"
|
|
|
|
extern void lv_example_calendar_1(lv_obj_t *parent);
|
|
|
|
void app_calendar_load(lv_obj_t *cont) {
|
|
lv_example_calendar_1(cont);
|
|
}
|
|
|
|
app_t app_calendar = {
|
|
.setup_func_cb = app_calendar_load,
|
|
.exit_func_cb = nullptr,
|
|
.user_data= nullptr,
|
|
}; |