]> git.karo-electronics.de Git - oswald.git/blob - ui/LcdDisplay.h
Oh boy... lots of changes, too many to describe
[oswald.git] / ui / LcdDisplay.h
1 #ifndef _LcdDisplay_h
2 #define _LcdDisplay_h
3
4 // #include "oswald_hal.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 u8t WriteLcdString(u8t x, u8t y, char *str);
10 void WriteLcdNumber(u8t x, u8t y, s16t number);
11
12 #endif
13