代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.c
/*********************************************************************************************
* File: lcd.c
* Author: embest
* Desc: LCD control and display functions
* History:
**************
lcd.h
/****************************************************************************
* SED1335的命令集
****************************************************************************/
#define LCD_RS 0x010
lcd.h
#ifndef __LCD_H__
#define __LCD_H__
void MoveViewPort(int depth);
void Test_LcdMono(void);
void Test_LcdG4(void);
void Test_LcdG16(void);
void Test_LcdColor(void);
void Test_Lcd(void);
#en
lcd.h
#ifndef __LCD_H__
#define __LCD_H__
#define CLCD_240_320 (1)
#define MLCD_320_240 (2)
#define LCD_TYPE MLCD_320_240
#define MODE_MONO (1)
#define MODE_G4 (4)
#define MODE_G16 (16)
lcd.c
/**************************************************************
The initial and control for 320×240 16Bpp TFT LCD--LTS350Q1_PE1 & LQ035Q7DB02
********************************************************
lcd.h
/**************************************************************
The initial and control for 240×320 16Bpp TFT LCD----LtS350Q1 & LQ035Q7DB02
**********************************************************
lcd.h
#include "function.h"
#define LCD_Data P0
sbit LCD_RS =P1^0;
sbit LCD_E =P1^2;
sbit LCD_WR =P1^1;
unsigned char LCDBusyWait() //等待LCD就绪
{
unsigned char Status;
LCD_R
lcd.c
//2行X16个字符位LCD驱动程序
//P0接LCD MODULE D0~D7,
#include "reg51.h"
#include "common.h"
#include "lcd.h"
#include "remote.h"
#define LCDMaxChar 11
void send_cmd(uchar);
void send_data(uchar);