blob: aa04b4f32888c771616a6c8b11720b42e6f0e97d (
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
|