Registration of badges and receiving votes only of voting badges implemented.

This commit is contained in:
2025-11-08 17:11:02 +00:00
parent 2a18995886
commit 34346e715d
20 changed files with 36262 additions and 35759 deletions

View File

@@ -16,6 +16,7 @@ typedef struct _objects_t {
lv_obj_t *vote_results;
lv_obj_t *ibvs_mode;
lv_obj_t *ibvs_processor;
lv_obj_t *not_authorized;
lv_obj_t *obj0;
lv_obj_t *obj1;
lv_obj_t *obj2;
@@ -50,6 +51,7 @@ enum ScreensEnum {
SCREEN_ID_VOTE_RESULTS = 6,
SCREEN_ID_IBVS_MODE = 7,
SCREEN_ID_IBVS_PROCESSOR = 8,
SCREEN_ID_NOT_AUTHORIZED = 9,
};
void create_screen_start();
@@ -75,6 +77,9 @@ void tick_screen_ibvs_mode();
void create_screen_ibvs_processor();
void tick_screen_ibvs_processor();
void create_screen_not_authorized();
void tick_screen_not_authorized();
void tick_screen_by_id(enum ScreensEnum screenId);
void tick_screen(int screen_index);