15 lines
451 B
C
15 lines
451 B
C
/**********************************************************
|
|
* 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 */
|