代码搜索:LCD
找到约 10,000 项符合「LCD」的源代码
代码结果 10,000
www.eeworm.com/read/359702/10129165
avd lcd.avd
www.eeworm.com/read/359702/10129167
hex lcd.hex
:0200000018C026
:140022003F065B4F666D7D077F6F794000000000CFE5D2E077
:14003600CDBFDEBFC051D0400AEA08830024E0E6F0E010E043
:14004A00E436F10711F00192FBCF0083E2E3F0E0A0E6B0E004
:14005E0010E0E233F10721F
www.eeworm.com/read/359702/10129169
cof lcd.cof
www.eeworm.com/read/359702/10129175
c lcd.c
#include
//*********************************************
//**the data port,use the port a,if donot change it
#define Db PORTA
#define DbIn PINA
#define DbDir DDRA
//** DB0--PA0
www.eeworm.com/read/359702/10129176
lst lcd.lst
__start:
__text_start:
0019 E5CF LDI R28,0x5F
001A E0D2 LDI R29,2
001B BFCD OUT 0x3D,R28
001C BFDE OUT 0x3E,R29
001D 51C0 SUBI R28,0x10
001E 40D
www.eeworm.com/read/359702/10129177
s lcd.s
.module lcd.c
.area lit(rom, con, rel)
_TAB::
.byte 4,52
.byte 196,4
.byte 196,60
.byte 32,16
.byte 15,232
.byte 8,8
.byte 40,24
.byte 0,0
.byte 16,8
.byte 6,1
.byte 130,140
www.eeworm.com/read/359702/10129191
lis lcd.lis
.module lcd.c
.area lit(rom, con, rel)
0000 _TAB::
0000 0434 .byte 4,52
0002 C404 .byte 196,4
0004
www.eeworm.com/read/359684/10129996
c lcd.c
#include
#include
char code int2charLCD[]="0123456789";
void write_LCD_command(unsigned command)
{
rw=WRITE;
rs=COMMAND;
enable=ENABLE;
P1=command;
delay100us(20)
www.eeworm.com/read/359684/10130043