summaryrefslogtreecommitdiff
path: root/src/paint.h
blob: c4efb819d70069c0f63d28e1021f1681b74800f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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