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
388 B

/* epd.h - E-Paper Display library API */
#ifndef EPD_H_
#define EPD_H_
/* Includes */
#include "stdint.h"
/* Definitions */
/* Data Structures */
typedef struct epd_s epd_t;
typedef void (*epd_spi_write)(const uint8_t *, size_t, void *);
typedef void (*epd_spi_cs)(const uint8_t, void *);
typedef void (*epd_dc)(const uint8_t, void *);
/* Function Prototypes */
#endif /* EPD_H_ */