M128/64 STK 1.0.1
 
Loading...
Searching...
No Matches
display.h
1#ifndef M12864STK_DISPLAY_H
2#define M12864STK_DISPLAY_H
3
4#include <stdint.h>
5
39namespace display
40{
44 void initialize();
49 void print(const char* str);
55 void print(char ch, uint8_t pos);
61 uint8_t getMask(char ch);
65 void refresh(uint8_t pos);
69 void refresh();
70}
71
72#endif
Definition display.cpp:6
void refresh()
Definition display.cpp:119
uint8_t getMask(char ch)
Definition display.cpp:79
void print(const char *str)
Definition display.cpp:58
void initialize()
Definition display.cpp:52