diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2022-09-09 18:33:15 -0500 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2022-09-09 18:33:15 -0500 |
commit | 7b006d6f2032ac46074d693ae59a971bee327ace (patch) | |
tree | 60963598d99001e0850e34d6271db8bd65e04fa4 /src/paint.h |
init
Diffstat (limited to 'src/paint.h')
-rw-r--r-- | src/paint.h | 13 |
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 + |