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.
 
 
 

22 lines
517 B

/* epd.h - E-Paper Display library API */
#ifndef EPD_FONTS_H_
#define EPD_FONTS_H_
/* Includes */
#include "stddef.h"
#include "stdint.h"
/* Data Structures */
typedef const uint8_t epd_font_t;
/* Exported Variables */
extern epd_font_t epd_font_u8glib_4_tf[1782];
extern epd_font_t epd_font_haxrcorp4089_tr[935];
extern epd_font_t epd_font_inr21_mf[7760];
extern epd_font_t epd_font_profont11_mf[2827];
extern epd_font_t epd_font_unifont_t_extended[11269];
/* Function Prototypes */
#endif /* EPD_FONTS_H_ */