You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
329 B
15 lines
329 B
/* epd.h - E-Paper Display library API */ |
|
|
|
#ifndef EPD_4P2MONO_H_ |
|
#define EPD_4P2MONO_H_ |
|
|
|
/* Includes */ |
|
#include "epd.h" |
|
|
|
/* Function Prototypes */ |
|
void epd_4p2mono_init(epd_t *epd); |
|
void epd_4p2mono_clear(epd_t *epd); |
|
void epd_4p2mono_testpattern(epd_t *epd); |
|
void epd_4p2mono_testimg(epd_t *epd); |
|
|
|
#endif /* EPD_4P2MONO_H_ */
|
|
|