MINI51DE_BSP V3.02.004
The Board Support Package for Mini51DE Series MCU
lcd_driver.h
Go to the documentation of this file.
1/**************************************************************************/
12#ifndef __LCD_DRIVER_H__
13#define __LCD_DRIVER_H__
14
15extern void LCD_ClearScreen(void);
16extern void LCD_Print(uint8_t line, char *str);
17extern void LCD_EnableBackLight(void);
18extern void LCD_DisableBackLight(void);
19extern void LCD_Init(void);
20#endif
void LCD_ClearScreen(void)
Clear screen to background color.
Definition: lcd_driver.c:158
void LCD_EnableBackLight(void)
Enable back-light of LCD.
Definition: lcd_driver.c:117
void LCD_Print(uint8_t line, char *str)
Show a string on specific line.
Definition: lcd_driver.c:140
void LCD_Init(void)
Use SPI interface to configure LCD module.
Definition: lcd_driver.c:35
void LCD_DisableBackLight(void)
Disable back-light of LCD.
Definition: lcd_driver.c:128