e35058f53d
Backfills the working firmware that had stayed uncommitted across the build sessions, so the branch is self-contained. - audio: audio_player, radio_pipeline, sd_player, calm_tone, aac_player - net: podcast (RSS), udp_log - modes: balloons, plus calm/games/radio tweaks - ui: fonts header, icons; build files (CMakeLists, idf_component.yml, sdkconfig.defaults) - docs/superpowers: Histoires design + plan Note: sdkconfig stays gitignored (Wi-Fi creds + tuned LFN/FS/mbedtls settings); a fresh checkout must reconfigure those.
19 lines
497 B
C
19 lines
497 B
C
// Fredoka (OFL) converted to LVGL fonts with French accents (Latin-1 range
|
|
// 0xA0-0xFF: é è à ç ù â ê î ô û ë ï ü ...). Rounded, kid-friendly. Generated
|
|
// with lv_font_conv from tools — see ui/fonts/CREDITS.md.
|
|
#pragma once
|
|
|
|
#include "lvgl.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const lv_font_t lisael_font_18; // body / tiles
|
|
extern const lv_font_t lisael_font_24; // sub-headers
|
|
extern const lv_font_t lisael_font_30; // clock / big
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|