aboutsummaryrefslogtreecommitdiffstats
path: root/include/display_text.h
blob: de7ebce7efdae4e9100fe013d786505359ec6eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef DISPLAY_TEXT_H_
#define DISPLAY_TEXT_H_

void text_init(void);
void text_switch(unsigned int i);
void text_puts(const char *s);

void text_clear(void);

void text_setpos(uint8_t x, uint8_t y);
void text_relpos(int8_t x, int8_t y);

#endif // DISPLAY_TEXT_H_