Mini51 BSP  V3.02.002
The Board Support Package for Mini51 Series
lcd_driver.h
Go to the documentation of this file.
1 /**************************************************************************/
12 #ifndef __LCD_DRIVER_H__
13 #define __LCD_DRIVER_H__
14 
15 extern void LCD_ClearScreen(void);
16 extern void LCD_Print(uint8_t line, char *str);
17 extern void LCD_EnableBackLight(void);
18 extern void LCD_DisableBackLight(void);
19 extern void LCD_Init(void);
20 #endif
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_ClearScreen(void)
Clear screen to background color.
Definition: lcd_driver.c:158
void LCD_DisableBackLight(void)
Disable back-light of LCD.
Definition: lcd_driver.c:128
void LCD_Init(void)
Use SPI interface to configure LCD module.
Definition: lcd_driver.c:35