1234567891011 |
- #ifndef __LCD_DRV_H_
- #define __LCD_DRV_H_
- #include <stdbool.h>
- char lcdDrv_Init(char type);
- //void lcdDrv_DeInit(void);
- void LCD_CtrlWrite_ST7735(unsigned char cmd);
- void LCD_DataWrite_ST7735(unsigned char data);
- void LCD_DataRead_ST7735(unsigned char *reg, unsigned char *data, unsigned int readLen);
- //void lcdDrvPowerCtl(bool on_off);
- #endif
|