summaryrefslogtreecommitdiffstats
path: root/esp32/main/epd.h
blob: 4fce90e1f976b633d018692788e1ba9bf34c844e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef EPD_H
#define EPD_H

#define EPD_WIDTH  800
#define EPD_HEIGHT 480

void epd_init(void);
void epd_clear(void);
void epd_draw(const unsigned char *buf, int n);
void epd_wake(void);
void epd_sleep(void);

#endif /* EPD_H */