代码搜索:Display
找到约 10,000 项符合「Display」的源代码
代码结果 10,000
www.eeworm.com/read/26219/955736
h display.h
//文件名:display.h
#ifndef __LZP_DISPLAY_H_
#define __LZP_DISPLAY_H_
#include "reg52.h"
/*******************************引脚定义***************************/
sbit RS = P2^0; //寄存器选择端口
sbit RW = P2^1;
www.eeworm.com/read/26454/959761
h display.h
#ifndef __DISPLAY_H__
#define __DISPLAY_H__
#define uchar unsigned char
#define uint unsigned int
//0 1 2 3 4 5 6 7 8 9 - 灭 _
unsigned char code DuanMa[]={0
www.eeworm.com/read/26711/962492
h display.h
void display_num(uchar adder,uchar num)//在第三行的左半屏写0-9数字
{
uchar i;
write_lcom(0xbc);
write_lcom(0x40+(adder-1)*8);
for(i=num*16;i
www.eeworm.com/read/26827/969711
h display.h
/************汉字点阵*************/
//汉字取模有点怪,找了很久,最后采
//用“晓奇”编写的字模软件LcmZimo才搞定。
char code hanzi[32][32]={
{//空
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0
www.eeworm.com/read/27335/983156
c display.c
#include
const uchar DATA_7SEG[ ] ={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
uchar led[6] ={1,2,3,4
www.eeworm.com/read/27335/983200
c display.c
#include
#define uchar unsigned char
#define uint unsigned int
const uchar DATA_7SEG[ ] ={0xc0,0xcf,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};
uchar led[4],min,sec;
//
www.eeworm.com/read/27405/983476
h display.h
void display_num(uchar adder,uchar num)//在第三行的左半屏写0-9数字
{
uchar i;
write_lcom(0xbc);
write_lcom(0x40+(adder-1)*8);
for(i=num*16;i
www.eeworm.com/read/27624/986856
1602display
www.eeworm.com/read/28525/999884
lst display.lst
C51 COMPILER V7.06 DISPLAY 06/02/2010 14:14:53 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE DISPLAY
OBJECT MODULE PLACED IN
www.eeworm.com/read/28525/999885