fix lv_theme_rb.h
Dependents: Mallette_DMG_V14 Mallette_RB10G1_V33 Mallette_RB10G1_V40 Mallette_RB10G1_V41bis
lv_theme_rb.h
- Committer:
- kisvegabor
- Date:
- 2020-01-29
- Revision:
- 1:a539070ce4d2
- Parent:
- 0:e82c05b4b6f9
File content as of revision 1:a539070ce4d2:
/** * @file lv_theme_night.h * */ #ifndef LV_THEME_RB_H #define LV_THEME_RB_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "lvgl.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * GLOBAL PROTOTYPES **********************/ /** * Initialize the RB theme * @param hue [0..360] hue value from HSV color space to define the theme's base color * @param font pointer to a font (NULL to use the default) * @return pointer to the initialized theme */ lv_theme_t * lv_theme_rb_init(uint16_t hue, lv_font_t * font); /** * Get a pointer to the theme * @return pointer to the theme */ lv_theme_t * lv_theme_get_rb(void); /********************** * MACROS **********************/ #ifdef __cplusplus } /* extern "C" */ #endif #endif /*LV_THEME_NIGHT_H*/