lcd_2102b.h
来自「一个很好的LCD驱动开发源程序,是信利的2102」· C头文件 代码 · 共 67 行
H
67 行
/**
* @belief: transmit IS2102B LCD specific functions to lcd.c
* Copyright (C) 2004 Anyka (GuangZhou) Software Technology Co., Ltd.
* @author YiRuoxiang
* @date 2006-03-21
* @version 1.0
* @ref Please refer to IS2102B_v1.2.pdf.
* @NOTE
* 18 bit LCD
*/
#ifndef __LCD_2102B_H__
#define __LCD_2102B_H__
#include "LCD.h"
T_VOID set_disp_address_is2102b(T_U32 x1, T_U32 y1, T_U32 x2, T_U32 y2);
/**
* @brief Initialize the is2102b LCD
* Initialize master LCD and slave LCD and then turn on them
* @author YiRuoxiang
* @date 2005-12-30
* @param T_VOID
* @return T_VOID
*/
T_VOID lcd_is2102b_initial(T_VOID);
/**
* @brief Turn on the LCD
* @author qxj
* @date 2005-07-18
* @param T_eLCD lcd: selected LCD, must be LCD_M or LCD_S
* @return T_VOID
*/
T_VOID lcd_is2102b_turn_on(T_eLCD lcd);
/**
* @brief Turn off the LCD
* @author qxj
* @date 2004-09-14
* @param T_eLCD lcd: selected LCD, must be LCD_M or LCD_S
* @return T_VOID
*/
T_VOID lcd_is2102b_turn_off(T_eLCD lcd);
/**
* @brief Set lcd_is2102b contrast value
* @author YiRuoxiang
* @date 2006-01-04
* @param T_U8 contrast: contrast value
* @return T_VOID
* @retval
*/
T_VOID lcd_is2102b_set_contrast(T_U8 contrast);
/**
* @brief rotate the picture 90 degree
* @author lgj
* @date 2005-08-18
* @param T_VOID
* @retval T_VOID
*/
T_VOID lcd_is2102b_rotate(T_VOID);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?