* Revert "Update ESP LCD Touch dependencies (#63)" This reverts commit cbd0355cec25e9d0f83f328ac2cae78e0e3b83e3. * Revert "Updated board configs for LVGL changes (#62)" This reverts commit 52d769854f6805407f7ee08adaa78b3a406fa13e. * Revert "Various updates (#60)" This reverts commit a8a664703b131963222d2035a3a85ecede29e633.
22 lines
418 B
C
22 lines
418 B
C
#pragma once
|
|
|
|
#include "lvgl.h"
|
|
#include <stdbool.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
LV_100ASK_SCREENSHOT_SV_BMP = 0,
|
|
LV_100ASK_SCREENSHOT_SV_PNG = 1,
|
|
LV_100ASK_SCREENSHOT_SV_LAST
|
|
} lv_100ask_screenshot_sv_t;
|
|
|
|
bool lv_screenshot_create(lv_obj_t* obj, lv_color_format_t cf, lv_100ask_screenshot_sv_t screenshot_sv, const char* filename);
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|