knxdisplay/main/Fonts.hpp
2026-01-25 15:20:12 +01:00

15 lines
275 B
C++

#pragma once
#include <cstdint>
#include "lvgl.h"
class Fonts {
public:
static void init();
static const lv_font_t* bySizeIndex(uint8_t sizeIndex);
// Icon font support
static const lv_font_t* iconFont(uint8_t sizeIndex);
static bool hasIconFont();
};