/********************************************************** * 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 */