]> git.karo-electronics.de Git - oswald.git/blob - ui/oswald_graphics.h
Bluetooth handling, screen reworks for icons
[oswald.git] / ui / oswald_graphics.h
1 #ifndef _OSWALD_GRAPHICS_H
2 #define _OSWALD_GRAPHICS_H
3
4 #include "oswald.h"
5 #include "oswald_strings.h"
6 #include "oswald_fonts.h"
7
8 #include "oswald_graphics.h"
9
10
11 void oswald_draw_bitmap(const uint8_t xstart, const uint8_t ystart, const uint8_t width, const uint8_t height, const void *bmp);
12
13 void oswald_draw_Line(uint8_t xstart, uint8_t ystart, uint8_t xend, uint8_t yend);
14
15 void oswald_draw_line_ww(u8t xstart, u8t ystart, u8t xend, u8t yend, u8t thickness);
16
17 u8t oswald_write_character(u8t x, u8t y, oswald_font_face face, u8t Character);
18
19 void oswald_write_string(u8t x, u8t y, oswald_font_face face, u8t *str);
20
21 void oswald_Write_number(u8t x, u8t y, oswald_font_face face, s16t number);
22
23 #endif