⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bitmap._h

📁 AVR控制12864液晶画圆弧,在AVR单片机的控制下完成圆弧的绘制。
💻 _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 + -