image alarm

This commit is contained in:
Mikkeli Matlock
2026-02-15 21:46:18 +09:00
parent 7eb05ea983
commit 33936650c6
9 changed files with 144 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include <stdbool.h>
#include "lvgl.h"
#ifdef __cplusplus
extern "C" {
@@ -29,6 +30,13 @@ void audio_client_stop(void);
/** Get current audio client state. */
audio_state_t audio_client_get_state(void);
/**
* Get the latest status image descriptor.
* @param updated Set to true if a new image arrived since last call, then reset.
* @return Pointer to the static image descriptor (always valid).
*/
const lv_img_dsc_t *audio_client_get_status_image(bool *updated);
#ifdef __cplusplus
}
#endif