代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.c
/*
* LCD interface example
* Uses routines from delay.c
* This code will interface to a standard LCD controller
* like the Hitachi HD44780. It uses it in 4 bit mode, with
* the hardware conn
lcd.h
/*
* LCD interface header file
* See lcd.c for more info
*/
/* write a byte to the LCD in 4 bit mode */
extern void lcd_write(unsigned char);
/* Clear and home the LCD */
extern void
lcd.h
sbit RS =0xb7; //P35=RS=0
lcd.h
#ifndef __LCD_H__
#define __LCD_H__
void MoveViewPort(int depth);
void Test_LcdMono(void);
void Test_LcdG4(void);
void Test_LcdStr(void);
#endif /*__LCD_H__*/
lcd.c
#include
#include "..\inc\def.h"
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\lcdlib.h"
#include "..\inc\glib.h"
#include "..\inc\lcd.h"
#include "..\inc\Slib.
lcd.c
#include
#include "2410addr.h"
#include "2410lib.h"
#include "def.h"
#include "lcdlib.h"
#include "glib.h"
#include "lcd.h"
#include ".\bmp\DEMO256.h"
void Lcd_Port_Init(void);
v