MCUXpresso_LPC55S69/boards/lpcxpresso55s69/lvgl_examples/lvgl_guider_bm/generated/gui_guider.h

31 lines
359 B
C

/*
* Copyright 2022 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef GUI_GUIDER_H
#define GUI_GUIDER_H
#include "lvgl/lvgl.h"
typedef struct
{
lv_obj_t *btn;
lv_obj_t *label;
} lv_ui;
extern lv_ui guider_ui;
#ifdef __cplusplus
extern "C" {
#endif
void setup_ui(lv_ui *ui);
#ifdef __cplusplus
}
#endif
#endif