Files
pm3-lvgl/inc/screen.h
2026-03-10 14:39:18 -07:00

22 lines
549 B
C

/**********************************************************
* File: screen.h
*
* Description: Screen helper
*********************************************************/
#ifndef SCREEN_H_CGT5FQUY
#define SCREEN_H_CGT5FQUY
#include "lvgl/lvgl.h" // IWYU pragma: keep
enum response_type {
RESPONSE_CHECK,
RESPONSE_CHECK_ID,
RESPONSE_CROSS,
RESPONSE_TRIANGLE
};
void screen_create(lv_obj_t *screen);
void screen_response(char *big, char *small, uint8_t status, uint32_t time);
#endif /* end of include guard: SCREEN_H_CGT5FQUY */