代码搜索:定时灯

找到约 10,000 项符合「定时灯」的源代码

代码结果 10,000
www.eeworm.com/read/170501/9802951

uv2 7.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, 0x0 Fil
www.eeworm.com/read/170501/9802972

uv2 2.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, 0x0 File 1
www.eeworm.com/read/355006/10306791

pdm nihongdeng.pdm

[Root] Most Recent Package=标准安装软件包 1 [Package|标准安装软件包 1|Root] SubWizProgID=PDWizard.SetupPkgSubWiz BuildFolder=D:\我的文件\霓虹灯花样编辑软件资料\霓虹灯安装程序 [Package|标准安装软件包 1|Configure DAO ISAMs] Applicabl
www.eeworm.com/read/349489/10824052

h main.h

#include "reg52.h" typedef unsigned char uint8; typedef unsigned int uint16; typedef unsigned long uint32; sbit bRunLED = P3^7; //运行指示灯 sbit b485Send = P3^3; //75LBC184 发送接收控制 #defi
www.eeworm.com/read/417173/11001498

lst 实现8个led流水灯汇编语言程序 liu02.lst

A51 MACRO ASSEMBLER 实现8竉LED羅薩灯汇__语裚___騙LIU02 02/24/2009 15:53:21 PAGE 1 MACRO ASSEMBLER A51 V6.12 OBJECT MODULE PLACED IN .\实现8个LED流水灯汇编语言程序 liu02.OBJ ASS
www.eeworm.com/read/458153/7303607

asm led2.asm

ORG 00H START: JB P3.0,LIG ; 如果P3.0为高电平,(本例即开关闭合),则执行LIG。 CLR P1.0 SJMP START ; 转入主程序 LIG: SETB P1.0 ;使P1.0变为1。灯灭。 SJMP START END
www.eeworm.com/read/458038/7313631

s main.s

.module main.c .area vector(rom, abs) .org 64 jmp _OSTickISR .area text(rom, con, rel) .even _main:: sbiw R28,3 ; /* ; 高级实验UCOS: ; UCOS操作系统实验。 ; 1、UCOS简单移植实验,运行了三个小任务,用来改变指示灯闪烁。 ;
www.eeworm.com/read/455126/7377527

txt pwm.txt

PWM EQU 7FH ;PWM赋初始值PWM 定义为,7FH OUT EQU P0 ;1个LED灯的接口OUT 定义为,P0.1 INCKEY EQU P1.0 ;K1,PWM值增加键。INCKEY 定义为,P1.4
www.eeworm.com/read/453764/7412878

plg huibian.plg

礦ision3 Build Log Project: E:\工程\单片机仿真\经典实验\1闪烁灯\huibian.uv2 Project File Date: 03/27/2008 Output:
www.eeworm.com/read/453764/7412886

asm shangshuodeng.asm

org 0000h jmp start org 2000h start: clr p1.0 ;亮灯 lcall delay ;延时0.2s setb p1.0 ;灭灯 lcall delay ;延时0.2s ajmp start ;返回 delay: mov r7,#10 D1:mov r6,