aboutsummaryrefslogtreecommitdiffstats
path: root/avr-test2/src/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'avr-test2/src/font.h')
-rw-r--r--avr-test2/src/font.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/avr-test2/src/font.h b/avr-test2/src/font.h
new file mode 100644
index 0000000..006414b
--- /dev/null
+++ b/avr-test2/src/font.h
@@ -0,0 +1,13 @@
+#ifndef FONT_H
+#define FONT_H
+
+#include <avr/pgmspace.h>
+
+void font_getchar (char chr, unsigned char dst[5]);
+void font_getpath (unsigned char path, unsigned char *destination, int length);
+void font_getbitmap (char bitmap, unsigned char dst[8]);
+unsigned char font_getbitmappixel ( char bitmap, char x, char y);
+
+
+
+#endif