]> git.karo-electronics.de Git - oswald.git/blob - ui/LcdDisplay.h
42152f09182a04aec2af69729e0d11951af62633
[oswald.git] / ui / LcdDisplay.h
1 #ifndef _LcdDisplay_h
2 #define _LcdDisplay_h
3
4 // #include "oswald_hal.h"
5
6 void oswald_draw_bitmap(const uint8_t xstart, const uint8_t ystart, const uint8_t width, const uint8_t height, const void *bmp);
7 void DrawLcdLineBresenham(u8t xstart, u8t ystart, u8t xend, u8t yend);
8 void DrawLcdLineBresenhamWW(u8t xstart, u8t ystart, u8t xend, u8t yend, u8t thickness);
9 u8t WriteLcdCharacter(u8t x, u8t y, u8t Character);
10 u8t WriteLcdString(u8t x, u8t y, char *str);
11 void WriteLcdNumber(u8t x, u8t y, s16t number);
12
13 #endif
14