]> git.defcon.no Git - avrfbosd/blobdiff - draw.h
Added support for drawing characters and strings, updated font with "limited ascii...
[avrfbosd] / draw.h
diff --git a/draw.h b/draw.h
index 34e0d3cc5a711614d01e86c0ae7de81d62b0e7ef..1fbc3e87015d9aa635d27f0197c8edd72d4a8a72 100644 (file)
--- a/draw.h
+++ b/draw.h
@@ -37,4 +37,7 @@ void fill_circle(uint8_t x0, uint8_t y0, uint8_t radius, char c);
 void draw_8bpp_bitmap( uint8_t pos_x, uint8_t pos_y, uint8_t width, uint8_t height, const uint8_t* image );
 void pgm_draw_8bpp_bitmap( uint8_t pos_x, uint8_t pos_y, uint8_t width, uint8_t height, const uint8_t* image );
 
+void draw_char ( uint8_t pos_x, uint8_t pos_y, uint8_t ch);
+void draw_string ( uint8_t pos_x, uint8_t pos_y, const char *text);
+
 #endif