aboutsummaryrefslogtreecommitdiffstats
path: root/instructables/cube_pc/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'instructables/cube_pc/font.h')
-rw-r--r--instructables/cube_pc/font.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/instructables/cube_pc/font.h b/instructables/cube_pc/font.h
new file mode 100644
index 0000000..1558204
--- /dev/null
+++ b/instructables/cube_pc/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