Toying around with a 4.2 in. e-Paper module from Waveshare and the Raspberry Pi Pico. Maybe it'll become a library some day.
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.
 
 
 

19 lines
414 B

/* epd.h - E-Paper Display library API */
#ifndef EPD_4P2MONO_H_
#define EPD_4P2MONO_H_
/* Includes */
#include "epd.h"
/* Definitions */
#define EPD_4P2MONO_WIDTH (400)
#define EPD_4P2MONO_HEIGHT (300)
/* 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_ */