aboutsummaryrefslogtreecommitdiff
path: root/laser-tag software/epaper.h
blob: cd4f4fb6f821259a8419354c4e17e3f03edd43e0 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _EPAPER_H_
#define _EPAPER_H_

#include <stdint.h>

void EPD_Init();
int EPD_Draw(const uint8_t *old_image, const uint8_t *new_image);
void EPD_Deinit();

#endif