]> git.karo-electronics.de Git - oswald.git/blob - ui/LcdDisplay.h
Redesign to an event based handling
[oswald.git] / ui / LcdDisplay.h
1 #ifndef _LcdDisplay_h
2 #define _LcdDisplay_h
3
4 #include "oswald-ui.h"
5
6 void DrawLcdLineBresenham(u8t xstart, u8t ystart, u8t xend, u8t yend);
7 void DrawLcdLineBresenhamWW(u8t xstart, u8t ystart, u8t xend, u8t yend, u8t thickness);
8 u8t WriteLcdCharacter(u8t x, u8t y, u8t Character);
9 void WriteLcdString(u8t x, u8t y, u8t *str);
10
11 #endif
12