mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
21 lines
418 B
C
21 lines
418 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Affects LVGL widget style */
|
|
typedef enum {
|
|
/** Ideal for very small non-touch screen devices (e.g. Waveshare S3 LCD 1.3") */
|
|
UiScaleSmallest,
|
|
/** Nothing was changed in the LVGL UI/UX */
|
|
UiScaleDefault
|
|
} UiScale;
|
|
|
|
/** @return the UI scaling setting for this device. */
|
|
UiScale tt_hal_configuration_get_ui_scale();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|