📄 bitmap._h
字号:
#ifndef BITMAP_H
#define BITMAP_H
#include "graphic.h"
#include "m32macro.h"
typedef struct IMG_DEF
{ const unsigned char width_in_pixels; /* Image width */
const unsigned char height_in_pixels; /* Image height*/
const unsigned char *char_table; /* Image table start address in memory */
} IMG_DEF;
extern const struct IMG_DEF icon1_bmp;
extern const struct IMG_DEF frame_bmp ;
void lcd_bitmap( uint8_t left, uint8_t top, const struct IMG_DEF *img_ptr, uint8_t mode);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -