bitmap._h
来自「AVR控制12864液晶画圆弧,在AVR单片机的控制下完成圆弧的绘制。」· _H 代码 · 共 17 行
_H
17 行
#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 + =
减小字号Ctrl + -
显示快捷键?