Add status codes for scan

This commit is contained in:
2026-03-10 14:39:18 -07:00
parent 43513022a5
commit abf360cac9
3 changed files with 30 additions and 7 deletions

View File

@@ -8,7 +8,14 @@
#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 id_req, uint32_t time);
void screen_response(char *big, char *small, uint8_t status, uint32_t time);
#endif /* end of include guard: SCREEN_H_CGT5FQUY */