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.
|
/* epd.c - E-Paper Display library API */ |
|
|
|
/* Includes */ |
|
#include "epd.h" |
|
#include "string.h" |
|
|
|
/* Function Definitions */ |
|
void epd_init(epd_t *epd, epd_config_t *cfg) |
|
{ |
|
memcpy(&(epd->cfg), cfg, sizeof(epd_config_t)); |
|
}
|
|
|