Files
tactility_apps/Apps/HelloWorld/main/Source/main.c
T
Ken Van Hoeylandt b1e7eb999a Update apps for SDK updates (#38)
The updates mainly relate to lvgl-module changes.
2026-07-26 17:20:01 +02:00

23 lines
681 B
C

#include <tt_app.h>
#include <lvgl/widgets/toolbar.h>
/**
* Note: LVGL and Tactility methods need to be exposed manually from TactilityC/Source/tt_init.cpp
* Only C is supported for now (C++ symbols fail to link)
*/
static void onShowApp(AppHandle app, void* data, lv_obj_t* parent) {
lv_obj_t* toolbar = lvgl_toolbar_create(parent, "Hello World");
lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);
lv_obj_t* label = lv_label_create(parent);
lv_label_set_text(label, "Hello, world!");
lv_obj_align(label, LV_ALIGN_CENTER, 0, 0);
}
int main(int argc, char* argv[]) {
tt_app_register((AppRegistration) {
.onShow = onShowApp
});
return 0;
}