mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-04-21 13:57:20 +00:00

* Return network status * lvgl v8 preparations * Fix pin assignment * Improve idle checking * Add bcklpin 32 * Update upload_port * Comment on seperate line * Update test.yaml * Copy boot partitions * Add release workflow * Update README.md * Small changes * Add docs * Delete 17-javascript.md * Update docs * Rename haspWakeUp to guiWakeUp * Code cleanup * Rename haspWakeUp to guiWakeUp * Code cleanup * Change to lvgl#dev-v8 * Update check_obj_type * Enable default PULLUP * Bump StreamUtils Version * Increase JsonDocument size * Improve GPIO Settings * Comment default ports * Add more GPIOs configs * Gpio improvements * Use saved_page in hasp_new_object Co-authored-by: fvanroie
43 lines
702 B
C
43 lines
702 B
C
/**
|
|
* @file lv_comp_conf.h
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* COPY THIS FILE AS `lv_comp_conf.h` NEXT TO the `lvgl` FOLDER
|
|
*/
|
|
|
|
#if 1 /*Set it to "1" to enable content*/
|
|
|
|
#ifndef LV_COMP_CONF_H
|
|
#define LV_COMP_CONF_H
|
|
|
|
#define LV_USE_CALENDAR 1
|
|
#define LV_USE_CALENDAR_HEADER_ARROW 1
|
|
|
|
#define LV_USE_COLORWHEEL 1
|
|
|
|
#define LV_USE_KEYBOARD 1
|
|
|
|
#define LV_USE_LED 1
|
|
#define LV_LED_BRIGHT_MIN 0
|
|
#define LV_LED_BRIGHT_MAX 255
|
|
|
|
#define LV_USE_LIST 1
|
|
|
|
#define LV_USE_MSGBOX 1
|
|
|
|
#define LV_USE_SPINBOX 1
|
|
|
|
#define LV_USE_SPINNER 1
|
|
|
|
#define LV_USE_TABVIEW 1
|
|
|
|
#define LV_USE_TILEVIEW 1
|
|
|
|
#define LV_USE_WIN 1
|
|
|
|
#endif /*LV_COMP_CONF_H*/
|
|
|
|
#endif /*End of "Content enable"*/
|