mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +00:00
12 lines
No EOL
431 B
C
12 lines
No EOL
431 B
C
#include "standby.h"
|
|
#include <totp_icons.h>
|
|
#include "../../constants.h"
|
|
|
|
void totp_scene_standby_render(Canvas* const canvas) {
|
|
canvas_draw_icon(canvas, SCREEN_WIDTH - 56, SCREEN_HEIGHT - 48, &I_DolphinCommon_56x48);
|
|
|
|
canvas_set_font(canvas, FontPrimary);
|
|
canvas_draw_str_aligned(canvas, 5, 10, AlignLeft, AlignTop, "CLI command");
|
|
|
|
canvas_draw_str_aligned(canvas, 5, 24, AlignLeft, AlignTop, "is running now");
|
|
} |