aboutsummaryrefslogtreecommitdiff
path: root/laser-tag software/epaper.h
blob: e72a74d2ac1a2e9ec144cabbd3a511d0fca04329 (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_Tick();

#endif