summaryrefslogtreecommitdiff
path: root/src/paint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/paint.h')
-rw-r--r--src/paint.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/paint.h b/src/paint.h
new file mode 100644
index 0000000..c4efb81
--- /dev/null
+++ b/src/paint.h
@@ -0,0 +1,13 @@
+#ifndef __PAINT_H
+#define __PAINT_H
+
+#include "ssd1306_display_driver.h"
+#include "br24t_eeprom_driver.h"
+
+void screen_clear();
+void draw_image(EEPROM_ADDR image);
+void draw_hline(int pos_y);
+void draw_text(char *text, int x, int y, EEPROM_ADDR font);
+
+#endif
+