]> git.karo-electronics.de Git - oswald.git/blobdiff - ui/oswald_graphics.h
add missing files
[oswald.git] / ui / oswald_graphics.h
diff --git a/ui/oswald_graphics.h b/ui/oswald_graphics.h
new file mode 100644 (file)
index 0000000..45c9941
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef _OSWALD_GRAPHICS_H
+#define _OSWALD_GRAPHICS_H
+
+#include "oswald.h"
+#include "oswald_strings.h"
+#include "oswald_fonts.h"
+
+#include "oswald_graphics.h"
+
+
+void oswald_draw_Line(u8t xstart, u8t ystart, u8t xend, u8t yend);
+
+void oswald_draw_line_ww(u8t xstart, u8t ystart, u8t xend, u8t yend, u8t thickness);
+
+u8t oswald_write_character(u8t x, u8t y, oswald_font_face face, u8t Character);
+
+void oswald_write_string(u8t x, u8t y, oswald_font_face face, u8t *str);
+
+void oswald_Write_number(u8t x, u8t y, oswald_font_face face, s16t number);
+
+#endif