blob: d1053f2398b1229431bf9026b98f9b012b8f8385 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "indicator.h"
#include <stdint.h>
#include <string>
namespace de::uvok::badge
{
extern const int image_count;
void display_init(void);
uint8_t display_next(void);
uint8_t display_prev(void);
uint8_t display_refresh(void);
void display_direct(uint8_t num);
void display_text(const std::string& text);
void display_indicator(DisplayIndicator);
} // namespace de::uvok::badge
|