2025-05-30 20:50:24 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "OLEDDisplay.h"
|
|
|
|
|
#include "OLEDDisplayUi.h"
|
|
|
|
|
|
2025-05-31 07:35:38 -05:00
|
|
|
namespace graphics
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
namespace NotificationRenderer
|
|
|
|
|
{
|
|
|
|
|
|
2025-05-30 20:50:24 -05:00
|
|
|
class NotificationRenderer
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static void drawAlertBannerOverlay(OLEDDisplay *display, OLEDDisplayUiState *state);
|
|
|
|
|
static void drawCriticalFaultFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
|
|
|
|
static void drawSSLScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
|
|
|
|
static void drawWelcomeScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
|
|
|
|
static void drawFrameFirmware(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
|
|
|
|
};
|
2025-05-31 07:35:38 -05:00
|
|
|
|
|
|
|
|
} // namespace NotificationRenderer
|
|
|
|
|
|
|
|
|
|
} // namespace graphics
|