Add response screen

This commit is contained in:
2026-03-10 14:18:45 -07:00
parent 4cfa24e4a6
commit 43513022a5
13 changed files with 35805 additions and 321 deletions

14
inc/screen.h Normal file
View File

@@ -0,0 +1,14 @@
/**********************************************************
* File: screen.h
*
* Description: Screen helper
*********************************************************/
#ifndef SCREEN_H_CGT5FQUY
#define SCREEN_H_CGT5FQUY
#include "lvgl/lvgl.h" // IWYU pragma: keep
void screen_create(lv_obj_t *screen);
void screen_response(char *big, char *small, uint8_t id_req, uint32_t time);
#endif /* end of include guard: SCREEN_H_CGT5FQUY */