1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/demos/ebike/lv_demo_ebike_settings.h
2024-10-14 18:47:47 +02:00

49 lines
789 B
C

/**
* @file lv_demo_ebike_settings.h
*
*/
#ifndef LV_DEMO_EBIKE_SETTINGS_H
#define LV_DEMO_EBIKE_SETTINGS_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lv_demo_ebike.h"
#if LV_USE_DEMO_EBIKE
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Create the settings page
* @param parent the parent of the settings page
*/
void lv_demo_ebike_settings_create(lv_obj_t * parent);
/**********************
* MACROS
**********************/
#endif /*LV_USE_DEMO_EBIKE*/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_DEMO_EBIKE_SETTINGS_H*/