Files
Joachim f5896a3609 First commit to add an example with the TTGO Camera Plus device
- For now, the example gets an image from the camera and puts it on the LCD
	- TODO: image is rotated and refresh rate not good
2020-08-25 16:52:45 +02:00

12 lines
230 B
C

#ifndef _FONT_H_
#define _FONT_H_
#define NR_CHRS_F7S 96
#define CHR_HGT_F7S 48
#define DATA_SIZE_F7S 8
#define FIRSTCHR_F7S 32
extern const unsigned char widtbl_f7s[96];
extern const unsigned char *chrtbl_f7s[96];
#endif