代码搜索:灯电路
找到约 10,000 项符合「灯电路」的源代码
代码结果 10,000
www.eeworm.com/read/303521/13813515
obj 闪烁灯.obj
www.eeworm.com/read/303521/13813516
opt 闪烁灯.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/303521/13813517
dsn 闪烁灯.dsn
www.eeworm.com/read/303521/13813518
asm 闪烁灯.asm
//汇编源程序
ORG 0
START: CLR P1.0
LCALL DELAY
SETB P1.0
LCALL DELAY
LJMP START
DELAY: MOV R5,#20 ;延时子程序,延时0.2 秒
D1: MOV R6,#20
D2: MOV R7,#248
DJNZ R7,$
DJNZ R6,D2
DJNZ R5,D1
RET
END
www.eeworm.com/read/303521/13813519
hex 闪烁灯.hex
:10000300D3EF9400EE9400400B7D80DDFEEF1F7074
:04001300EF1E80EC70
:0100170022C6
:10001800C2907FE87E03120003D2907FE87E03122D
:04002800000380EC65
:0300000002002CCF
:0C002C00787FE4F6D8FD7581070200180
www.eeworm.com/read/303521/13813522
pwi 闪烁灯.pwi
www.eeworm.com/read/303521/13813523
c 闪烁灯.c
#include
sbit L1=P1^0; // 定义输入信号命名
void delays(unsigned s) //延时0.2 秒子程序
{
unsigned char i;
for(s;s>0;s--)
for(i=2000000;i>0;i--);
}
void main(void)
{
while(1)
www.eeworm.com/read/303521/13813530
lst 闪烁灯.lst
C51 COMPILER V8.02 闪烁灯 04/23/2008 15:25:38 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE 闪烁灯
OBJECT MODULE PLACED IN 闪烁灯.OB
www.eeworm.com/read/303521/13813531
plg 闪烁灯.plg
礦ision3 Build Log
Project:
F:\zxr\单片机\AT89S51实践\闪烁灯\闪烁灯.uv2
Project File Date: 04/05/2008
Output:
Build target 'Target 1'
assembling 闪烁灯.asm.
www.eeworm.com/read/493302/6400580
c 定时灯.c
/*定时灯(带数码管显示时间可以调节)程序要求如下:
两位数码管显示。时间0-99分钟可以调节。 (用3个按键, 分别调整上,下, 开始)
有一个灯的秒指示。
运行期间,时间同步在数码管减少。 当等于00时。 灯熄灭
程序要求有..注释。
凡第一个交作业并运行通过由本站送出ep51编程器散件一套。*/
/******************** ...