打开hal\_lcd.h文件,接口列表如下:
* 驱动程序初始化:
```
void hal_lcd_init(void);
```
* 驱动程序反初始化:
```
void hal_lcd_deinit(void);
```
* 打开指定类型显示器:
```
int hal_lcd_open(hal_lcd_type_t type);
```
* 关闭显示器:
```
void hal_lcd_close(void);
```
* 按行在显示器上进行显示字符串:
```
void hal_lcd_write_lines(uint8_t clear, char *line1, char *line2, char *line3, char *line4);
```
* 显示器整屏显示:
```
void hal_lcd_write(char *str);
```
<br/>
- 框架介绍
- Main 函数
- HAL 函数接口说明
- hal_system.h
- hal_systick.h
- hal_idt.h
- hal_ioctl.h
- hal_flash.h
- hal_lpm.h
- hal_rtc.h
- hal_iwdg.h
- hal_uart.h
- hal_i2c.h
- hal_led.h
- hal_button.h
- hal_vht2x.h
- hal_lcd.h
- Services 函数接口说明
- svc_system.h
- svc_database.h
- svc_hid.h
- svc_msg.h
- svc_humiture.h
- svc_log.h
- Tasks 说明
- task_system.c
- task_example.c
- Libs 函数接口说明
- mathlib.h
- json.h
- atcmd.h
- atcmd_proxy.h
- libwifi.h
- libs1.h