mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-17 04:42:16 +08:00

- 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
12 lines
230 B
C
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 |